/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --bg:        #ffffff;
  --surface:   #faf9f6;
  --surface2:  #f0ede6;
  --border:    #e8e4dc;
  --accent:    #e8621a;
  --accent-h:  #c9510e;
  --accent-lt: #fff3ec;
  --text:      #1c1917;
  --muted:     #78716c;
  --radius:    1rem;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.6; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 540px;
}
.centered { text-align: center; }
.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.18s, transform 0.1s, box-shadow 0.18s;
  justify-content: center;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,98,26,.35);
}
.btn-primary:hover {
  background: var(--accent-h);
  box-shadow: 0 6px 20px rgba(232,98,26,.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  box-shadow: 0 6px 20px rgba(37,211,102,.38);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-lt); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ── Header ────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { color: #fff; }
.logo-text { line-height: 1.2; }
.logo-name { font-weight: 700; font-size: 1rem; color: var(--text); }
.logo-tagline { font-size: 0.7rem; color: var(--muted); }
.header-cta { display: none; gap: 0.6rem; }
@media (min-width: 600px) { .header-cta { display: flex; } }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background: linear-gradient(135deg, #1c1917 0%, #292524 40%, #3d2013 100%);
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(232,98,26,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(232,98,26,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 640px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: #fdba74;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Services ──────────────────────────────────────────────── */
.services { background: var(--surface); }
.services-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 560px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── How it works ──────────────────────────────────────────── */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  counter-reset: steps;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--surface2);
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ── About ─────────────────────────────────────────────────── */
.about {
  background: linear-gradient(135deg, #1c1917 0%, #292524 60%, #3d2013 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(232,98,26,.15) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .about-inner { grid-template-columns: 1fr 1fr; } }
.about-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #fff;
}
.about-content h2 em { font-style: normal; color: #fdba74; }
.about-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-content p strong { color: #fff; }
.about-cta { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
/* ── About photo ───────────────────────────────────────────── */
.about-photo {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* ── Stats (kept for reference) ────────────────────────────── */
.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fdba74;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ── Coverage ──────────────────────────────────────────────── */
.coverage { background: var(--surface); }
.coverage-inner { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .coverage-inner { grid-template-columns: 1fr 1fr; } }
.coverage-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.coverage-text p { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1.25rem; }
.coverage-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.coverage-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 12px var(--accent-lt), 0 0 0 24px rgba(232,98,26,.08);
  margin-bottom: 1.25rem;
}
.coverage-ring-inner { text-align: center; }
.coverage-km { font-size: 2rem; font-weight: 900; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.coverage-km-label { font-size: 0.75rem; color: var(--muted); }
.suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.suburb-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr 1.6fr; align-items: start; }
}
.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-info > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.contact-link:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.contact-link-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.contact-link-text small { display: block; color: var(--muted); font-size: 0.75rem; font-weight: 400; margin-top: 0.1rem; }

/* Form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 480px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 0.6rem;
  color: var(--text);
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  font-family: var(--font);
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,98,26,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c4b9b2; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { margin-top: 1.25rem; }
#form-feedback {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  display: none;
}
#form-feedback.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; display: block; }
#form-feedback.error   { background: #fff1f2; border: 1px solid #fecdd3; color: #9f1239; display: block; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-brand { font-weight: 600; color: #fff; font-size: 0.95rem; }
.footer-brand span { display: block; font-weight: 400; font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 0.15rem; }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-link:hover { color: #fff; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── Floating mobile FAB ───────────────────────────────────── */
.mobile-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}
@media (min-width: 600px) { .mobile-fab { display: none; } }
.fab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform 0.15s, box-shadow 0.15s;
}
.fab-btn:active { transform: scale(0.95); }
.fab-call { background: var(--accent); color: #fff; }
.fab-wa   { background: #25d366; color: #fff; }
