/* Brisbane Lawn Mowing - Design System */

:root {
  --primary: #16A34A;
  --primary-dark: #14532D;
  --primary-darker: #0F3A20;
  --primary-light: #DCFCE7;
  --cta: #EA580C;
  --cta-hover: #C2410C;
  --accent: #F59E0B;
  --bg: #FFFFFF;
  --bg-alt: #F9FAFB;
  --bg-warm: #FEFBF5;
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --success: #10B981;
  --star: #F59E0B;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
  --radius: 10px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.375rem; font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; }

p { color: var(--text); }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility bar */
.utility-bar {
  background: var(--primary-darker);
  color: white;
  font-size: 0.875rem;
  padding: 8px 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-bar .left, .utility-bar .right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.utility-bar .right span { display:flex; align-items:center; gap:6px; }
.utility-bar svg { width: 14px; height: 14px; }
.utility-bar a { color: white; font-weight: 600; }
.utility-bar a:hover { color: var(--accent); }

/* Header */
.header {
  background: white;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-darker);
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav a:hover { color: var(--primary); }
.nav a.has-dropdown::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 4px;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-primary {
  background: var(--cta);
  color: white;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}
.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline-white:hover {
  background: white;
  color: var(--primary-darker);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary-darker);
  border: 2px solid var(--primary-darker);
}
.btn-outline-dark:hover {
  background: var(--primary-darker);
  color: white;
}
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-lg { padding: 18px 34px; font-size: 1.0625rem; }

/* Inline images (break up walls of text) */
.inline-image {
  margin: 40px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.inline-image img {
  width: 100%;
  height: auto;
  display: block;
}
.image-caption {
  background: var(--primary-darker);
  color: white;
  padding: 14px 22px;
  font-size: 0.9375rem;
  font-style: italic;
  border-top: 3px solid var(--primary);
}

/* Mid-page CTA bands */
.mid-cta {
  background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin: 48px 0;
  border-left: 6px solid var(--cta);
  box-shadow: var(--shadow);
}
.mid-cta-content h3 {
  color: var(--primary-darker);
  margin-bottom: 4px;
  font-size: 1.375rem;
}
.mid-cta-content p {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0;
}
.mid-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.mid-cta-dark {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
  border-left-color: var(--accent);
}
.mid-cta-dark .mid-cta-content h3 { color: white; }
.mid-cta-dark .mid-cta-content p { color: rgba(255,255,255,0.85); }

/* Hero */
.hero {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, #FEFBF5 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22,163,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 20px;
  color: var(--primary-darker);
}
.hero h1 .highlight {
  color: var(--primary);
  display: inline-block;
  position: relative;
}
.hero h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 10px;
  background: rgba(245, 158, 11, 0.35);
  z-index: -1;
}
.hero-sub {
  font-size: 1.1875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.55;
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.hero-trust-item strong { color: var(--text); font-weight: 700; }
.hero-trust-item .stars {
  display: inline-flex;
  gap: 1px;
  color: var(--star);
  font-size: 1rem;
}
.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--primary-dark);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Trust strip */
.trust-strip {
  background: var(--primary-darker);
  color: white;
  padding: 24px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-item svg { width: 22px; height: 22px; color: #86EFAC; }

/* Sections */
section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-eyebrow {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.125rem; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.2s;
  position: relative;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-card .icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary-dark);
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 8px; font-size: 1.125rem; }
.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 14px;
  line-height: 1.55;
}
.service-card .link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card .tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: white;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
}
.why-card .big-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 18px;
}
.why-card .big-icon svg { width: 32px; height: 32px; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
  opacity: 0.25;
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--bg-alt);
  padding: 0 12px;
}
.step-num {
  width: 80px;
  height: 80px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.95rem; max-width: 280px; margin: 0 auto; }

/* Areas - suburb list cards */
.area-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  min-height: 220px;
}
.area-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.area-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.area-card h3 {
  color: var(--primary-darker);
  font-size: 1.25rem;
  margin: 0;
}
.area-arrow {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.2s;
}
.area-card:hover .area-arrow { transform: translateX(4px); }
.area-suburbs {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}
.area-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}
.area-card-cta {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
  color: white;
  align-items: flex-start;
}
.area-card-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-stars {
  color: var(--star);
  margin-bottom: 14px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 18px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}
.review-author .name { font-weight: 600; font-size: 0.95rem; }
.review-author .loc { font-size: 0.8125rem; color: var(--text-muted); }

/* Pricing preview */
.pricing-preview {
  background: var(--primary-darker);
  color: white;
  padding: 64px 48px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.pricing-preview h2 { color: white; margin-bottom: 14px; }
.pricing-preview p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 24px; }
.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier {
  background: rgba(255,255,255,0.1);
  padding: 18px 24px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}
.tier .label { font-weight: 600; }
.tier .price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.tier .price .from { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-right: 4px; }

/* FAQ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.0625rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(245,158,11,0.15) 0%, transparent 40%),
                    radial-gradient(circle at 80% 30%, rgba(22,163,74,0.3) 0%, transparent 40%);
}
.final-cta .container { position: relative; }
.final-cta h2 { color: white; margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.85); font-size: 1.125rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta-row { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Footer */
.footer {
  background: #0A1F14;
  color: rgba(255,255,255,0.8);
  padding: 64px 0 24px;
  font-size: 0.9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer h4 { color: white; margin-bottom: 18px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer ul a:hover { color: var(--accent); }
.footer-brand p { color: rgba(255,255,255,0.6); margin: 16px 0; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ==== SERVICE PAGE ==== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-light); }

.service-hero {
  padding: 48px 0 60px;
  background: linear-gradient(180deg, #FEFBF5 0%, #FFFFFF 100%);
}
.service-hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
  color: var(--primary-darker);
}
.service-hero .sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 24px;
  line-height: 1.55;
}
.price-card-hero {
  background: white;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.price-card-hero .left .label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.price-card-hero .price-big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-card-hero .price-big .from {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 6px;
  vertical-align: middle;
}
.price-card-hero .meta { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 900px;
  margin: 0 auto;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.included-item .check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 2px;
}
.included-item .body .t { font-weight: 600; margin-bottom: 2px; }
.included-item .body .d { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

.related-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.related-card {
  background: white;
  padding: 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.15s;
}
.related-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.related-card .icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.related-card .icon svg { width: 22px; height: 22px; }
.related-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.related-card .price { font-size: 0.85rem; color: var(--primary); font-weight: 600; }

/* Sticky side quote form on service pages (desktop only) */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.quote-card {
  background: white;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow);
}
.quote-card h3 { margin-bottom: 6px; }
.quote-card .tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.form-field {
  margin-bottom: 14px;
}
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-field input, .form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}
.form-field input:focus, .form-field select:focus {
  outline: none;
  border-color: var(--primary);
}
.quote-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.quote-trust div { display: flex; align-items: center; gap: 8px; }
.quote-trust svg { width: 14px; height: 14px; color: var(--success); }


/* ========== Nav dropdowns ========== */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  min-width: 640px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  z-index: 60;
}
.dropdown-menu::before {
  /* invisible hover bridge so the cursor can cross from trigger into panel */
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown-menu-areas { min-width: 280px; grid-template-columns: 1fr; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: grid; }
.dropdown-col { display: flex; flex-direction: column; gap: 6px; }
.dropdown-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 6px;
}
.dropdown-col a {
  color: var(--text);
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.9375rem;
}
.dropdown-col a:hover { background: var(--primary-light); color: var(--primary-darker); }

/* ========== Mobile nav ========== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

@media (max-width: 900px) {
  .header {
    padding: 12px 0;
    position: static;  /* escape sticky stacking-context trap on iOS Safari */
  }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 24px;
    box-shadow: var(--shadow-lg);
    display: none;
    overflow-y: auto;
    z-index: 9999;
    align-items: stretch;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { display: flex; }

  /* Floating call button — mobile only */
  .fab-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25), 0 0 0 4px rgba(46,164,79,0.15);
    text-decoration: none;
    animation: fab-pulse 2.4s ease-in-out infinite;
  }
  .fab-call svg { width: 28px; height: 28px; stroke: white; }
  .fab-call:hover, .fab-call:focus { background: var(--primary-darker); transform: scale(1.05); }
  body.nav-open .fab-call { display: none; }

  /* Mobile nav: flatten mega-menus into a single scrollable list */
  .nav-dropdown {
    display: contents;  /* let parent + child flow as siblings */
  }
  .nav-dropdown > a.has-dropdown {
    padding: 14px 20px;
    font-weight: 700;
    background: var(--primary-darker);
    color: white !important;
    border: none;
    display: block;
    width: 100%;
    margin-top: 4px;
  }
  .nav-dropdown > a.has-dropdown::after { display: none; }
  .dropdown-menu {
    position: static;
    display: flex !important;  /* always show on mobile */
    flex-direction: column;
    grid-template-columns: unset;
    min-width: unset;
    box-shadow: none;
    padding: 0;
    background: var(--bg-alt);
    margin: 0;
    gap: 0;
    border-radius: 0;
  }
  .dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 4px 0;
  }
  .dropdown-title {
    padding: 8px 20px 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    background: var(--bg-alt);
  }
  .dropdown-col a {
    padding: 12px 20px 12px 32px;
    color: var(--text);
    background: white;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    border-radius: 0;
  }
  .dropdown-col a:hover {
    background: var(--primary-light);
    color: var(--primary-darker);
  }
  .nav > a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    display: block;
    font-weight: 600;
  }
  .nav-cta {
    margin: 16px 20px 8px !important;
    width: calc(100% - 40px);
    text-align: center;
    background: var(--cta) !important;
    color: white !important;
    padding: 14px !important;
    border-radius: var(--radius);
  }

  .util-hide-mobile { display: none !important; }
  .utility-bar .container { gap: 12px; font-size: 0.75rem; }
  .utility-bar { padding: 6px 0; }

  .hero .container {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .service-hero .container { grid-template-columns: 1fr !important; }
  .service-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .quote-card { position: static !important; margin-top: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .services-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
  .services-grid .service-card { padding: 20px 18px !important; }
  .why-grid { grid-template-columns: 1fr 1fr !important; }
  .steps { grid-template-columns: 1fr !important; }
  .steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .pricing-preview { grid-template-columns: 1fr !important; padding: 40px 24px !important; }
  .mid-cta { flex-direction: column; text-align: center; align-items: stretch; }
  .hero-image { max-width: 100%; }
  .hero-trust { justify-content: flex-start; }
  h1 { font-size: 1.875rem !important; line-height: 1.2 !important; }
  h2 { font-size: 1.5rem !important; }
  .price-card-hero {
    flex-direction: column;
    align-items: stretch !important;
    gap: 16px;
    text-align: center;
  }
  .price-card-hero .price-big { font-size: 2.5rem !important; }
  .breadcrumb { font-size: 0.8rem; padding: 12px 0; overflow-x: auto; white-space: nowrap; }
  .section-head { margin-bottom: 32px !important; }
  section { padding: 48px 0 !important; }
  .trust-strip .container { flex-wrap: wrap; justify-content: center; gap: 12px !important; }
  .trust-item { font-size: 0.85rem !important; }
  .container { padding: 0 18px !important; }
}

@media (max-width: 760px) {
  .related-services { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}

@media (max-width: 560px) {
  .services-grid, .why-grid, .footer-grid, .related-services { grid-template-columns: 1fr 1fr !important; }
  .hero { padding: 40px 0 50px !important; }
  section { padding: 50px 0 !important; }
  .container { padding: 0 16px !important; }
  .utility-bar { font-size: 0.8125rem; }
  .utility-bar svg { width: 12px; height: 12px; }
  .utility-bar a[href^="tel:"] {
    display: inline-flex; align-items: center;
    padding: 8px 4px; min-height: 44px;
    font-size: 0.875rem; font-weight: 600;
  }
  .breadcrumb, .breadcrumb a, .breadcrumb span { font-size: 0.875rem !important; }
  .hero-cta-row { flex-direction: column; width: 100%; gap: 12px; }
  .hero-cta-row .btn,
  .hero-cta-row a.btn { width: 100%; text-align: center; justify-content: center; }
  .service-hero .btn,
  .service-hero a.btn { width: 100%; justify-content: center; }
  .final-cta-row { flex-direction: column; width: 100%; }
  .final-cta-row .btn { width: 100%; justify-content: center; }
  /* Defensive overflow backstop — no element should ever cause horizontal scroll */
  html, body { overflow-x: hidden; max-width: 100%; }
}

/* ========== Footer additions ========== */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.15s;
}
.footer-social a:hover {
  background: var(--primary);
  color: white;
}

/* ========== Improved focus states (accessibility) ========== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Print styles (so customers can print pricing/quote pages) */
@media print {
  .header, .utility-bar, .footer, .nav-toggle, .final-cta, .mid-cta { display: none !important; }
  body { background: white; color: black; }
}


/* ========== Content body (parsed docx content) ========== */
.content-body h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.75rem;
  color: var(--primary-darker);
}
.content-body h2:first-child { margin-top: 0; }
.content-body p {
  margin-bottom: 18px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
}
.content-body ul {
  margin: 16px 0 24px;
  padding-left: 24px;
}
.content-body ul li {
  margin-bottom: 10px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
}
.content-body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(22,163,74,0.3);
  text-underline-offset: 3px;
  font-weight: 600;
}
.content-body a:hover {
  color: var(--primary-darker);
  text-decoration-color: var(--primary-darker);
}
.content-body strong { color: var(--primary-darker); }

/* Blog body slightly larger */
.blog-body p { font-size: 1.1rem; }

/* Hero image aspect ratio lock for LCP (img fills container) */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-hero .hero-image {
  aspect-ratio: 16/9;
}

/* Hide floating call button on desktop */
@media (min-width: 901px) {
  .fab-call { display: none !important; }
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(0,0,0,0.25), 0 0 0 4px rgba(46,164,79,0.15); }
  50% { box-shadow: 0 8px 20px rgba(0,0,0,0.25), 0 0 0 10px rgba(46,164,79,0.05); }
}


/* Real SVG logo (replaces old B-mark) */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 40px;
}
@media (max-width: 640px) {
  .logo-img { height: 38px; }
}


/* Inline review grid on service/area pages */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0 40px;
}
@media (max-width: 640px) {
  .review-grid { grid-template-columns: 1fr; }
}


/* Chat-bubble review cards (service pages + reviews.html) */
.review-bubble-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 32px 0 48px;
}
.review-bubble {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px 24px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.review-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: rgba(22,163,74,0.2);
}
.review-bubble-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.review-bubble .review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-bubble .review-meta .name {
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--primary-darker);
  line-height: 1.2;
}
.review-bubble .review-meta .loc {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.review-bubble .review-stars {
  color: var(--star, #F59E0B);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.review-chat {
  position: relative;
  background: var(--bg-alt, #F9FAFB);
  border-radius: 14px;
  padding: 16px 18px 14px;
  margin-top: 2px;
}
.review-chat::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 22px;
  width: 16px;
  height: 16px;
  background: var(--bg-alt, #F9FAFB);
  transform: rotate(45deg);
  border-top-left-radius: 4px;
  z-index: 0;
}
.review-chat > * { position: relative; z-index: 1; }
.review-chat p {
  margin: 0 0 10px 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}
.review-chat p::before { content: "\201C"; color: var(--primary); font-weight: 800; margin-right: 2px; }
.review-chat p::after  { content: "\201D"; color: var(--primary); font-weight: 800; margin-left: 2px; }
.review-service-pill {
  display: inline-block;
  background: rgba(22,163,74,0.1);
  color: var(--primary-darker);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 4px;
}
.review-ba {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-light);
  font-size: 0.825rem;
  color: var(--text-muted);
}
.review-ba .ba-before strong { color: #B45309; }
.review-ba .ba-after strong  { color: var(--primary); }
@media (max-width: 640px) {
  .review-bubble-grid { grid-template-columns: 1fr; gap: 18px; }
  .review-bubble { padding: 18px 18px 20px; }
}


/* Message textarea on quote form */
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}
.form-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}
