:root {
  --green-dark: #1e3d0f;
  --green-mid: #2d5a1b;
  --green-light: #4a8a2a;
  --orange: #e85d04;
  --orange-hover: #c94f02;
  --text: #1a1a1a;
  --text-light: #555;
  --bg: #fff;
  --bg-light: #f7f9f4;
  --border: #e0e8d8;
  --radius: 8px;
}

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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--green-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
header {
  background: var(--green-dark);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  line-height: 1.1;
}

.logo-name {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.logo-accent {
  color: #a8d96c;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
  display: block;
  margin-top: 2px;
}

.logo-icon { font-size: 1.6rem; }

nav { display: flex; align-items: center; gap: 24px; }

nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

nav a:hover { color: #fff; text-decoration: none; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-header {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-hover);
  text-decoration: none;
  color: #fff;
}

.btn-green {
  background: var(--green-mid);
  color: #fff;
}

.btn-green:hover { background: var(--green-dark); color: #fff; text-decoration: none; }

.btn-lg { padding: 16px 32px; font-size: 1.1rem; }

.btn:active { transform: scale(0.98); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  padding: 24px 0 40px;
  color: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: start;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero h1 span { color: #a8d96c; }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.hero-trust-item .check { color: #a8d96c; font-weight: 700; }

/* QUOTE FORM */
.quote-form-box {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  overflow: hidden;
}

.quote-form-box h2,
.quote-form-box > p {
  display: none;
}

.quote-form-box form {
  padding: 22px 26px 26px;
}

/* Speech bubble badge above form */
.quote-badge {
  position: relative;
  background: #fff;
  border: 3px solid var(--green-light);
  border-radius: 12px;
  padding: 14px 20px 16px;
  text-align: center;
  margin: 0;
}

.quote-badge::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid var(--green-light);
  z-index: 1;
}

.quote-badge::before {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #fff;
  z-index: 2;
}

.quote-badge-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}

.quote-badge-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.quote-chevron {
  text-align: center;
  padding: 8px 0 0;
  line-height: 1;
}

.quote-chevron svg {
  width: 32px;
  height: 20px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit { width: 100%; padding: 14px; font-size: 1rem; margin-top: 6px; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
}

/* TRUST BAR */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}

.trust-item .icon { font-size: 1.3rem; }

/* SECTIONS */
section { padding: 64px 0; }
section.alt { background: var(--bg-light); }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-light);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin-bottom: 40px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-color: var(--green-light);
}

.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.55; }

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--green-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-item h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.why-item p { font-size: 0.9rem; color: var(--text-light); }

/* SUBURBS */
.suburbs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.suburb-link {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
}

.suburb-link:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  text-decoration: none;
}

/* TESTIMONIALS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; font-style: italic; }
.reviewer { font-weight: 700; font-size: 0.88rem; color: var(--green-dark); }
.reviewer-suburb { font-size: 0.82rem; color: var(--text-light); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.faq-item p { font-size: 0.92rem; color: var(--text-light); }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
  padding: 56px 0;
  text-align: center;
}

.cta-band h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; }

/* FOOTER */
footer {
  background: #0f2008;
  color: rgba(255,255,255,0.7);
  padding: 40px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }

footer h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }

footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,0.7); font-size: 0.88rem; text-decoration: none; }
footer ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* SUBURB PAGE */
.suburb-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 50px 0 45px;
  color: #fff;
}

.suburb-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: center;
}

.suburb-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.suburb-hero p { font-size: 1rem; color: rgba(255,255,255,0.88); }

.suburb-content { padding: 50px 0; }

.suburb-content-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}

.suburb-body h2 { font-size: 1.4rem; font-weight: 700; color: var(--green-dark); margin: 28px 0 12px; }
.suburb-body h2:first-child { margin-top: 0; }
.suburb-body p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.7; }
.suburb-body ul { margin: 0 0 14px 20px; }
.suburb-body ul li { font-size: 0.95rem; color: var(--text-light); margin-bottom: 6px; }

.sticky-form { position: sticky; top: 80px; }
.sticky-form .quote-form-box { border: 2px solid var(--border); }

.services-box-suburb {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 0 0 28px;
}
.services-grid-suburb {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.service-card-suburb {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.service-card-suburb:hover { color: var(--green-dark); }
.service-icon-suburb { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.service-label-suburb { line-height: 1.3; }

.nearby-suburbs { margin-top: 30px; }
.nearby-suburbs h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 14px; }
.nearby-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-link {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-mid);
  text-decoration: none;
}
.nearby-link:hover { background: var(--green-dark); color: #fff; text-decoration: none; }

/* BREADCRUMB */
.breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--text-light);
}

.breadcrumb a { color: var(--green-mid); }
.breadcrumb span { margin: 0 6px; }

/* SERVICE PAGE */
.service-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 60px 0;
  color: #fff;
}

.service-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.service-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 560px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .quote-form-box { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .suburbs-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .suburb-hero-inner { grid-template-columns: 1fr; }
  .suburb-content-inner { grid-template-columns: 1fr; }
  .sticky-form { position: static; }
  nav { display: none; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .suburbs-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
