/* ========================================
   AIRDRIE EXCAVATION PROS — STYLESHEET
   ======================================== */

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

:root {
  --orange: #ea5c0f;
  --orange-dark: #c94e0d;
  --black: #0f0f0f;
  --dark: #1a1a1a;
  --dark2: #242424;
  --mid: #3a3a3a;
  --border: #2e2e2e;
  --text: #e8e4df;
  --muted: #9a9390;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.2s ease;
  --max: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* CONTAINER */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,92,15,0.4); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--outline-dark:hover { background: var(--dark); color: var(--white); }
.btn--white { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn--white:hover { background: #f0ede8; }
.btn--lg { padding: 16px 32px; font-size: 17px; }
.btn--full { width: 100%; justify-content: center; }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header--light h2 { color: var(--white); }
.section-header--light .section-sub { color: var(--muted); }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.15; color: var(--white); }
.section-sub { max-width: 600px; margin: 16px auto 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.link-arrow { display: inline-block; margin-top: 16px; color: var(--orange); font-weight: 600; transition: gap var(--transition); }
.link-arrow:hover { text-decoration: underline; }

/* ========================================
   TOP BAR
   ======================================== */
.topbar {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__booking a { color: var(--orange); font-weight: 600; }
.topbar__booking a:hover { text-decoration: underline; }

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo__main { font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: 0.04em; }
.logo__sub { font-size: 11px; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav a:hover { color: var(--white); }

.header__cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 80px 24px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.hero__headline {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__headline span { color: var(--orange); }

.hero__sub {
  font-size: 18px;
  color: rgba(232,228,223,0.85);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(232,228,223,0.7);
}
.stars { color: #fbbf24; font-size: 18px; }

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: var(--orange);
  padding: 28px 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========================================
   TICKER
   ======================================== */
.ticker-wrap {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 12px 0;
}
.ticker {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   QUOTE / FORM EMBED
   ======================================== */
.quote-section {
  background: var(--dark2);
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--border);
}

/* Intro text centred above the form */
.quote-intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 36px;
}
.quote-intro h2 { margin-bottom: 14px; }
.quote-intro__sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.quote-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.quote-trust span::before { content: ''; }

/* LeadConnector iframe wrapper */
.form-embed-wrapper {
  max-width: 620px;
  margin: 0 auto;
  min-height: 790px;
  border-radius: 12px;
  overflow: hidden;
  /* Prevents layout shift while iframe loads */
  background: var(--dark);
  border: 1px solid var(--border);
}
.form-embed-wrapper iframe {
  display: block; /* kills the inline gap below the iframe */
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: 96px 0;
  background: var(--dark);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__img { transform: scale(1.04); }
.service-card__body { padding: 24px; }
.service-card__body h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.service-card__body p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.service-card__body .link-arrow { font-size: 14px; margin-top: 0; }

/* ========================================
   WHY US
   ======================================== */
.why-us {
  padding: 96px 0;
  background: var(--black);
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.reason { padding: 36px; background: var(--dark2); border: 1px solid var(--border); border-radius: 10px; transition: border-color var(--transition); }
.reason:hover { border-color: var(--orange); }
.reason__num { display: block; font-size: 13px; font-weight: 900; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.reason h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.reason p { color: var(--muted); line-height: 1.7; }

/* ========================================
   PROCESS
   ======================================== */
.process {
  padding: 96px 0;
  background: var(--dark);
}
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 8px;
}
.process-step {
  flex: 1;
  padding: 36px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
}
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.process-step h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.process-step p { color: var(--muted); line-height: 1.7; }
.process-step__arrow {
  display: flex;
  align-items: center;
  font-size: 28px;
  color: var(--orange);
  opacity: 0.6;
  margin-top: 80px;
  flex-shrink: 0;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: 96px 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.about__img {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}
.about__img--main { grid-row: 1 / 3; }
.about__img--sm1 { grid-row: 1 / 2; }
.about__img--sm2 { grid-row: 2 / 3; }

.about__text .section-tag { text-align: left; }
.about__text h2 { margin-bottom: 20px; }
.about__text > p { color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.about__pillars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.pillar { padding: 18px 20px; background: var(--dark); border-left: 3px solid var(--orange); border-radius: 0 6px 6px 0; }
.pillar strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 4px; }
.pillar p { color: var(--muted); font-size: 14px; margin: 0; }
.about__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========================================
   REVIEWS
   ======================================== */
.reviews {
  padding: 96px 0;
  background: var(--black);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
}
.review-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }
.review-card--featured { transform: scale(1.03); border-color: var(--orange); }
.review-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.review-card__img { height: 180px; background-size: cover; background-position: center; }
.review-card__stars { color: #fbbf24; font-size: 18px; padding: 20px 20px 12px; }
.review-card blockquote { font-size: 15px; line-height: 1.7; color: var(--text); padding: 0 20px 12px; font-style: italic; }
.review-card cite { display: block; padding: 0 20px 20px; font-size: 13px; font-weight: 700; color: var(--muted); font-style: normal; }

/* ========================================
   SERVICE AREAS
   ======================================== */
.areas {
  padding: 96px 0;
  background: var(--dark);
}
.areas__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.areas__text .section-tag { text-align: left; }
.areas__text h2 { margin-bottom: 16px; }
.areas__text > p { color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.areas__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.areas__list li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: var(--text); }
.area-dot { display: inline-block; width: 10px; height: 10px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.areas__img {
  height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 96px 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  gap: 16px;
  font-family: inherit;
  transition: color var(--transition);
}
.faq-item__q:hover { color: var(--orange); }
.faq-item__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-item__a { overflow: hidden; max-height: 0; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item__a.open { max-height: 200px; padding-bottom: 20px; }
.faq-item__a p { color: var(--muted); line-height: 1.75; }

/* ========================================
   FINAL CTA
   ======================================== */
.cta-section {
  padding: 96px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-section__text .section-tag { text-align: left; }
.cta-section__text h2 { margin-bottom: 16px; }
.cta-section__text p { color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.cta-email a { color: var(--orange); }
.cta-email a:hover { text-decoration: underline; }

.cta-section__options {
  display: flex;
  align-items: center;
  gap: 32px;
}
.cta-option { flex: 1; text-align: center; }
.cta-option__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.cta-phone {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.cta-phone:hover { color: var(--orange); }
.cta-option p { font-size: 14px; color: var(--muted); margin-top: 8px; }
.cta-divider {
  font-size: 13px;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand .logo__main { display: block; font-size: 16px; font-weight: 900; color: var(--white); letter-spacing: 0.04em; margin-bottom: 4px; }
.footer__brand .logo__sub { display: block; font-size: 11px; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer__trust { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--mid); }

.footer__links h4,
.footer__contact h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--muted); font-size: 14px; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__contact p { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.footer__contact a { color: var(--muted); transition: color var(--transition); }
.footer__contact a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p { font-size: 13px; color: var(--mid); }

/* ========================================
   DROPDOWN NAV
   ======================================== */
.nav__group { position: relative; }
.nav__parent {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color var(--transition);
}
.nav__parent:hover { color: var(--white); }
.nav__arrow { font-size: 10px; transition: transform var(--transition); }
.nav__group.open .nav__arrow { transform: rotate(180deg); }
.nav__group.open > .nav__parent { color: var(--white); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -12px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.nav__group.open .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--muted);
  transition: all var(--transition);
}
.nav__dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.04); padding-left: 22px; }
.nav__dropdown .dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb__list a { color: var(--muted); transition: color var(--transition); }
.breadcrumb__list a:hover { color: var(--orange); }
.breadcrumb__sep { color: var(--mid); font-size: 11px; }
.breadcrumb__current { color: var(--text); }

/* ========================================
   INNER PAGE HERO
   ======================================== */
.page-hero {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background: var(--black);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.5) 100%);
}
.page-hero__content { position: relative; z-index: 2; max-width: 680px; }
.page-hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-hero__sub {
  font-size: 17px;
  color: rgba(232,228,223,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}
.page-hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========================================
   INNER PAGE CONTENT
   ======================================== */
.inner-section {
  padding: 80px 0;
}
.inner-section--dark { background: var(--black); }
.inner-section--mid { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.inner-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.inner-layout--reversed { grid-template-columns: 380px 1fr; }

.inner-body h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 18px; }
.inner-body h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; margin-top: 32px; }
.inner-body p { color: var(--muted); line-height: 1.8; margin-bottom: 18px; font-size: 16px; }
.inner-body p:last-child { margin-bottom: 0; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}
.feature-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.inner-sidebar { position: sticky; top: 96px; }
.sidebar-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}
.sidebar-card .service-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-card .service-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.sidebar-card .service-links a:hover { background: var(--mid); color: var(--white); }
.sidebar-card .service-links a.active { background: rgba(234,92,15,0.12); color: var(--orange); border: 1px solid rgba(234,92,15,0.3); }
.sidebar-card .service-links a::before { content: '→'; font-size: 12px; }

.sidebar-cta {
  background: var(--orange);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
}
.sidebar-cta h4 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.sidebar-cta .btn--white { width: 100%; justify-content: center; margin-bottom: 12px; }
.sidebar-cta .phone-link { display: block; color: var(--white); font-weight: 800; font-size: 18px; transition: opacity var(--transition); }
.sidebar-cta .phone-link:hover { opacity: 0.85; }

/* Inner page service features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.feature-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  transition: border-color var(--transition);
}
.feature-box:hover { border-color: var(--orange); }
.feature-box__icon { font-size: 24px; margin-bottom: 12px; }
.feature-box h3 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 8px; margin-top: 0; }
.feature-box p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Inner page gallery */
.inner-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 40px 0;
}
.inner-gallery__img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}
.inner-gallery__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

/* Process steps (inner pages) */
.process-list { display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.process-list__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.process-list__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}
.process-list__text h4 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.process-list__text p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; }

/* Location page services grid */
.loc-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.loc-service-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition);
}
.loc-service-item:hover { border-color: var(--orange); }
.loc-service-item a { color: var(--white); font-weight: 700; font-size: 15px; display: block; margin-bottom: 4px; }
.loc-service-item a:hover { color: var(--orange); }
.loc-service-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.loc-service-item__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; align-items: flex-start; padding: 16px 0; gap: 4px; }
  .nav__group { width: 100%; }
  .nav__parent { width: 100%; padding: 10px 0; font-size: 15px; color: var(--text); }
  .nav__dropdown { position: static; opacity: 1; pointer-events: all; transform: none; background: transparent; border: none; box-shadow: none; padding: 4px 0 4px 16px; display: none; }
  .nav__group.open .nav__dropdown { display: block; }
  .nav__dropdown a { padding: 8px 0; color: var(--muted); }
  .header__inner { flex-wrap: wrap; position: relative; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .inner-layout { grid-template-columns: 1fr; }
  .inner-layout--reversed { grid-template-columns: 1fr; }
  .inner-sidebar { position: static; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-services { grid-template-columns: 1fr; }
  /* Form embed: slightly less padding on tablet */
  .quote-section { padding: 56px 0 64px; }
  .form-embed-wrapper { max-width: 100%; border-radius: 10px; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .quote-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__gallery { height: 320px; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .review-card--featured { transform: none; }
  .areas__inner { grid-template-columns: 1fr; }
  .areas__img { height: 300px; }
  .cta-section__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .process__steps { flex-direction: column; }
  .process-step__arrow { display: none; }
}

@media (max-width: 640px) {
  /* Hide topbar and hero clutter — keep it punchy on mobile */
  .topbar { display: none; }
  .hero__badges { display: none; }
  .hero__rating { display: none; }
  .hero__content { padding: 40px 24px 48px; }
  .hero__headline { font-size: clamp(36px, 10vw, 56px); margin-bottom: 16px; }
  .hero__sub { font-size: 16px; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .cta-section__options { flex-direction: column; gap: 32px; }
  .footer__inner { grid-template-columns: 1fr; }
  .process__steps { gap: 16px; }
  .inner-gallery { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0; }
  /* Form embed: full-bleed on mobile, tighter intro */
  .quote-section { padding: 48px 0 56px; }
  .quote-intro { margin-bottom: 24px; }
  .quote-intro h2 { font-size: clamp(24px, 7vw, 34px); }
  .quote-intro__sub { font-size: 15px; }
  .quote-trust { gap: 6px 12px; font-size: 12px; }
  .form-embed-wrapper {
    border-radius: 8px;
    /* Remove side margins so form sits edge-to-edge with just the container padding */
    margin-left: 0;
    margin-right: 0;
  }
}
