/* ============================================================
   findmeacleaner.com.au — Design System
   ============================================================ */

:root {
  --green:        #0F6E56;
  --green-dark:   #085041;
  --green-light:  #E1F5EE;
  --yellow:       #EF9F27;
  --yellow-light: #FFF8E1;
  --yellow-dark:  #7A5800;
  --text-1:       #111827;
  --text-2:       #374151;
  --text-3:       #6B7280;
  --text-4:       #9CA3AF;
  --bg-1:         #FFFFFF;
  --bg-2:         #F9FAFB;
  --bg-3:         #F3F4F6;
  --border:       #E5E7EB;
  --radius:       8px;
  --radius-lg:    12px;
  --shadow:       0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:    0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  background: var(--bg-1);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
ul, ol { list-style: none; }

/* Typography */
h1 { font-size: clamp(22px, 5vw, 36px); font-weight: 500; letter-spacing: -0.4px; color: var(--text-1); line-height: 1.25; }
h2 { font-size: clamp(18px, 4vw, 28px); font-weight: 500; color: var(--text-1); line-height: 1.3; }
h3 { font-size: clamp(15px, 3vw, 20px); font-weight: 500; color: var(--text-1); }
h4 { font-size: 15px; font-weight: 500; color: var(--text-1); }
p { color: var(--text-2); }
small { font-size: 13px; color: var(--text-3); }

/* Layout */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-alt { background: var(--bg-2); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}
.nav-logo {
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo .y { color: var(--yellow); }
.nav-logo .g { color: var(--green); }
.nav-logo .d { color: var(--text-3); }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--bg-2); color: var(--text-1); }

.nav-cta {
  display: none;
  background: var(--green);
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: var(--radius) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: var(--radius);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  background: var(--bg-1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  color: var(--text-2);
  padding: 10px 20px;
  transition: background .15s;
}
.nav-mobile a:hover { background: var(--bg-2); }
.nav-mobile .nav-mobile-cta {
  margin: 8px 20px 4px;
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
}
.nav-mobile .nav-mobile-cta:hover { background: var(--green-dark); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
}

/* ============================================================
   Logo component (reused in nav + footer)
   ============================================================ */
.logo .y { color: var(--yellow); }
.logo .g { color: var(--green); }
.logo .d { color: var(--text-3); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background .15s, transform .1s;
  text-decoration: none;
  line-height: 1;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-secondary { background: var(--bg-3); color: var(--text-1); }
.btn-secondary:hover { background: var(--border); color: var(--text-1); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green-light); color: var(--green); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 60px 0 50px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 16px; }
.hero-sub {
  font-size: 16px;
  color: var(--text-3);
  max-width: 540px;
  margin: 0 auto 32px;
}

/* Suburb search */
.suburb-search {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.suburb-search input {
  width: 100%;
  padding: 14px 50px 14px 48px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 15px;
  color: var(--text-1);
  background: var(--bg-1);
  outline: none;
  transition: border-color .2s;
}
.suburb-search input:focus { border-color: var(--green); }
.suburb-search input::placeholder { color: var(--text-4); }
.suburb-search .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-4);
  font-size: 18px;
}
.suburb-search .search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .15s;
}
.suburb-search .search-btn:hover { background: var(--green-dark); }

/* Autocomplete dropdown */
.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 50;
  max-height: 280px;
  overflow-y: auto;
  display: none;
}
.autocomplete-dropdown.show { display: block; }
.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-2);
  transition: background .1s;
}
.autocomplete-item:hover { background: var(--bg-2); }
.autocomplete-item .suburb-name { font-weight: 500; color: var(--text-1); }
.autocomplete-item .suburb-meta { font-size: 12px; color: var(--text-4); }

/* Consent notice */
.consent-notice {
  background: var(--yellow-light);
  border: 1px solid #F5E0B0;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--yellow-dark);
  max-width: 480px;
  margin: 14px auto 0;
  line-height: 1.6;
}
.consent-notice a { color: var(--yellow-dark); text-decoration: underline; }

/* How it works strip */
.how-strip {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.how-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
}
.how-step-num {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   Services section
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.service-card i { font-size: 28px; color: var(--green); margin-bottom: 10px; }
.service-card h4 { font-size: 13px; color: var(--text-1); }

/* ============================================================
   Chat Panel
   ============================================================ */
#chat-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
}
#chat-overlay.open { display: flex; }
@media (min-width: 640px) {
  #chat-overlay { align-items: flex-end; justify-content: flex-end; padding: 20px; }
}

#chat-panel {
  width: 100%;
  max-width: 420px;
  height: 85vh;
  max-height: 660px;
  background: var(--bg-1);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
}
@media (min-width: 640px) {
  #chat-panel {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-agent-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  flex-shrink: 0;
}
.chat-agent-info { flex: 1; min-width: 0; }
.chat-agent-name { font-size: 14px; font-weight: 500; color: var(--text-1); }
.chat-agent-status { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 5px; }
.chat-agent-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}
.chat-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-4);
  font-size: 20px;
  padding: 4px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.chat-close-btn:hover { color: var(--text-2); background: var(--bg-2); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-2);
}

.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  line-height: 1.6;
}
.chat-bubble.assistant {
  background: var(--bg-1);
  border: 1px solid var(--border);
  color: var(--text-2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.user {
  background: var(--green);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  max-width: 70px;
}
.chat-typing span {
  width: 7px; height: 7px;
  background: var(--text-4);
  border-radius: 50%;
  animation: typing-dot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-footer {
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  flex-shrink: 0;
  background: var(--bg-1);
}
.chat-input-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.chat-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-1);
  resize: none;
  max-height: 120px;
  outline: none;
  transition: border-color .2s;
  line-height: 1.5;
}
.chat-input:focus { border-color: var(--green); }
.chat-input::placeholder { color: var(--text-4); }
.chat-send-btn {
  background: var(--green);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background .15s;
}
.chat-send-btn:hover { background: var(--green-dark); }
.chat-send-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Agent colour identities */
.agent-john    { background: #E1F5EE; color: #0F6E56; }
.agent-wanda   { background: #E6F1FB; color: #185FA5; }
.agent-sid     { background: #FAEEDA; color: #854F0B; }
.agent-rodrigo { background: #FBEAF0; color: #993556; }

/* ============================================================
   Section labels
   ============================================================ */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.section-heading { margin-bottom: 8px; }
.section-sub {
  font-size: 15px;
  color: var(--text-3);
  max-width: 560px;
}

/* ============================================================
   Trust / Social proof
   ============================================================ */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-items {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-3);
}
.trust-item i { color: var(--green); font-size: 16px; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Steps (how it works)
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
@media (min-width: 768px) { .steps { flex-direction: row; } }

.step { display: flex; gap: 16px; flex: 1; }
.step-num {
  width: 36px; height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
  font-size: 15px;
  flex-shrink: 0;
}
.step-body h3 { margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--text-3); }

/* ============================================================
   Blog cards
   ============================================================ */
.blog-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); border-color: var(--green); }
.blog-card-body { padding: 20px; }
.blog-card-cat {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 16px; margin-bottom: 8px; }
.blog-card h3 a { color: var(--text-1); }
.blog-card h3 a:hover { color: var(--green); }
.blog-card p { font-size: 13px; color: var(--text-3); }
.blog-card-meta { margin-top: 14px; font-size: 12px; color: var(--text-4); }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
  gap: 12px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question i { color: var(--text-4); flex-shrink: 0; transition: transform .25s; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer {
  font-size: 14px;
  color: var(--text-3);
  padding-bottom: 18px;
  display: none;
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 24px; }
.cta-banner .btn { background: #fff; color: var(--green); }
.cta-banner .btn:hover { background: var(--green-light); color: var(--green); }

/* ============================================================
   Advertise strip
   ============================================================ */
.advertise-strip {
  background: var(--yellow-light);
  border-top: 1px solid #F0DCA0;
  border-bottom: 1px solid #F0DCA0;
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: var(--yellow-dark);
}
.advertise-strip a { color: var(--yellow-dark); font-weight: 500; text-decoration: underline; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--text-1);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo { font-size: 17px; font-weight: 500; margin-bottom: 12px; }
.footer-logo .y { color: var(--yellow); }
.footer-logo .g { color: var(--green); }
.footer-logo .d { color: rgba(255,255,255,.4); }

.footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-disclosure {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }

/* ============================================================
   Suburb page
   ============================================================ */
.suburb-hero { background: var(--green-light); padding: 40px 0 32px; }
.suburb-breadcrumb { font-size: 13px; color: var(--text-3); margin-bottom: 12px; }
.suburb-breadcrumb a { color: var(--green); }

/* ============================================================
   Contact form
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-1); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-1);
  background: var(--bg-1);
  outline: none;
  transition: border-color .2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--green); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: 12px; color: #dc2626; margin-top: 4px; }

/* ============================================================
   Badges / pills
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.badge-green  { background: var(--green-light); color: var(--green); }
.badge-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.badge-grey   { background: var(--bg-3); color: var(--text-3); }

/* ============================================================
   Thank-you / verify pages
   ============================================================ */
.verify-box {
  max-width: 500px;
  margin: 80px auto;
  text-align: center;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.verify-icon { font-size: 48px; color: var(--green); margin-bottom: 20px; }

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.text-green  { color: var(--green); }
.text-yellow { color: var(--yellow); }
.text-grey   { color: var(--text-3); }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   Hero v2 — Two-column conversational layout
   ============================================================ */
.hero {
  padding: 52px 0 48px;
  text-align: left;
  background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15, 110, 86, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .hero-inner { flex-direction: row; align-items: center; gap: 56px; }
  .hero-left   { flex: 1 1 0; }
  .hero-preview { flex: 0 0 360px; }
}

/* Online badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 110, 86, 0.08);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(15, 110, 86, 0.12);
}
.hero-badge-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% {
    opacity: 1;
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    opacity: 1;
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.hero h1    { margin-bottom: 12px; }
.hero-h1-sub { color: var(--green); display: block; }
.hero-sub   { font-size: 16px; color: var(--text-3); max-width: 500px; margin-bottom: 28px; }

/* Rotating agent name highlight */
.hero-agent-name {
  background: var(--yellow);
  color: #000;
  padding: 2px 12px 4px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: opacity 0.3s ease-in-out;
}

/* Conversational intent input */
.intent-input-wrap {
  background: var(--bg-1);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 14px 10px;
  transition: border-color .2s, box-shadow .2s;
  margin-bottom: 16px;
}
.intent-input-wrap:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15,110,86,.08);
}
#intent-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-1);
  resize: none;
  background: transparent;
  line-height: 1.6;
}
#intent-input::placeholder { color: var(--text-4); }
.intent-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--green) 0%, #0a5a45 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  transition: all .2s ease-in-out;
  box-shadow: 0 4px 12px rgba(15, 110, 86, 0.15);
  position: relative;
  overflow: hidden;
}
.intent-submit-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
}
.intent-submit-btn:hover {
  background: linear-gradient(135deg, #0a5a45 0%, var(--green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 110, 86, 0.25);
}
.intent-submit-btn:hover::before {
  left: 100%;
}
.intent-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(15, 110, 86, 0.2);
}

/* Divider between intent input and suburb search */
.hero-divider {
  text-align: center;
  font-size: 12px;
  color: var(--text-4);
  margin: 16px 0;
  position: relative;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 32px);
  height: 1px;
  background: var(--border);
}
.hero-divider::before { left: 0; }
.hero-divider::after  { right: 0; }

/* Suburb search compact (in hero) */
.suburb-search-sm { max-width: 100%; margin: 0; }
.suburb-search-sm input {
  padding: 12px 44px 12px 42px;
  font-size: 14px;
}

/* Consent notice (left-aligned in new layout) */
.consent-notice { margin: 14px 0 0; text-align: left; }

/* ============================================================
   Hero preview panel (animated chat demo)
   ============================================================ */
.hero-preview { display: none; }
@media (min-width: 900px) { .hero-preview { display: block; } }

.hp-window {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hp-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
}
.hp-dots {
  display: flex;
  gap: 5px;
}
.hp-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.hp-dots span:nth-child(1) { background: #fc5753; }
.hp-dots span:nth-child(2) { background: #fdbc40; }
.hp-dots span:nth-child(3) { background: #33c748; }
.hp-title { font-size: 12px; color: var(--text-3); flex: 1; text-align: center; }

.hp-chat {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}
.hp-agent-row,
.hp-user-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  transition: opacity .4s;
}
.hp-user-row { justify-content: flex-end; }

.hp-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hp-bubble {
  max-width: 78%;
  padding: 9px 12px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  line-height: 1.55;
}
.hp-agent { background: var(--bg-2); color: var(--text-2); border-bottom-left-radius: 4px; }
.hp-user  { background: var(--green); color: #fff; border-bottom-right-radius: 4px; }

.hp-typing { display: none; align-items: flex-end; gap: 8px; }
.hp-typing-bubble {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
}
.hp-typing-bubble span {
  width: 6px; height: 6px;
  background: var(--text-4);
  border-radius: 50%;
  animation: typing-dot 1.2s ease-in-out infinite;
}
.hp-typing-bubble span:nth-child(2) { animation-delay: .2s; }
.hp-typing-bubble span:nth-child(3) { animation-delay: .4s; }

.hp-badge {
  text-align: center;
  font-size: 12px;
  color: var(--text-4);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hp-badge i { color: var(--green); }

/* ============================================================
   Service landing pages
   ============================================================ */
.service-hero {
  background: linear-gradient(135deg, var(--green-light) 0%, #f0faf6 100%);
  padding: 48px 0 44px;
  border-bottom: 1px solid #c8e8dd;
}
.service-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 860px) {
  .service-hero-inner { flex-direction: row; align-items: center; gap: 48px; }
  .service-hero-content { flex: 1 1 0; }
  .service-chat-preview  { flex: 0 0 300px; }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--green); }

.service-hero-icon {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}
.service-hero h1 { margin-bottom: 8px; }
.service-hero-sub { font-size: 16px; color: var(--text-3); margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--text-3); max-width: 520px; margin-bottom: 24px; }
.service-cta-group { display: flex; flex-direction: column; gap: 10px; }
.service-cta-note { font-size: 12px; color: var(--text-4); display: flex; align-items: center; gap: 5px; }
.service-cta-note i { color: var(--green); }

/* Mini chat preview on service page */
.service-chat-preview {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.scp-header {
  background: var(--green);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scp-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.scp-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-2);
}
.scp-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.55;
}
.scp-agent { background: var(--bg-1); border: 1px solid var(--border); color: var(--text-2); align-self: flex-start; }
.scp-user  { background: var(--green); color: #fff; align-self: flex-end; }
.scp-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-self: flex-start;
  width: 52px;
}
.scp-typing span {
  width: 6px; height: 6px;
  background: var(--text-4);
  border-radius: 50%;
  animation: typing-dot 1.2s ease-in-out infinite;
}
.scp-typing span:nth-child(2) { animation-delay: .2s; }
.scp-typing span:nth-child(3) { animation-delay: .4s; }
.scp-start {
  width: 100%;
  background: var(--green-light);
  color: var(--green);
  border: none;
  border-top: 1px solid var(--border);
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: background .15s;
}
.scp-start:hover { background: #c8e8dd; }

/* Service included list */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin-top: 28px;
}
@media (min-width: 640px) { .service-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .service-list-grid { grid-template-columns: repeat(3, 1fr); } }

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  padding: 10px 14px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.service-list-item i { color: var(--green); margin-top: 2px; flex-shrink: 0; }

/* Price table */
.price-guide-wrap { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 860px) {
  .price-guide-wrap { flex-direction: row; align-items: flex-start; gap: 48px; }
  .price-guide-wrap > div { flex: 1 1 0; }
  .price-table        { flex: 0 0 380px; }
}
.price-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-table-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-3);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
.price-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
  gap: 12px;
}
.price-table-row:last-child { border-bottom: none; }
.price-range { font-weight: 500; color: var(--green); white-space: nowrap; }
.price-disclaimer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-4);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.price-disclaimer i { color: var(--green); margin-top: 1px; flex-shrink: 0; }

/* FAQ (service page variant) */
.faq-list { display: flex; flex-direction: column; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-q .faq-icon { color: var(--text-4); flex-shrink: 0; transition: transform .25s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a { padding-bottom: 16px; font-size: 14px; color: var(--text-3); line-height: 1.7; }

/* Related services grid */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 640px) { .related-services-grid { grid-template-columns: repeat(4, 1fr); } }

.related-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 14px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-1);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}
.related-service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  color: var(--green);
}
.related-service-card i:first-child { font-size: 24px; color: var(--green); }
.related-arrow {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 14px;
  color: var(--text-4);
}

/* Service card link variant */
.service-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}
.service-card-link:hover { border-color: var(--green); }
.service-card-link .service-card-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  color: var(--text-4);
  opacity: 0;
  transition: opacity .2s;
}
.service-card-link:hover .service-card-arrow { opacity: 1; }

/* Lead score badge (used in admin emails / future admin UI) */
.score-hot    { background: #fee2e2; color: #dc2626; }
.score-warm   { background: #fef9c3; color: #a16207; }
.score-cool   { background: #dbeafe; color: #1d4ed8; }
.score-cold   { background: var(--bg-3); color: var(--text-3); }


/* Loading spinner animation for chat postcode screen */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

