*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #111827;
  background: #f9fafb;
}

:root {
  --theme-primary: #2563eb;
  --theme-primary-dark: color-mix(in srgb, var(--theme-primary) 82%, #000);
  --theme-primary-soft: color-mix(in srgb, var(--theme-primary) 14%, #fff);
}

body {
  min-height: 100vh;
}

.site-body {
  background: #f6f8fb;
  color: #111827;
}

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

ul {
  margin: 0;
  padding: 0;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.ml-1 { margin-left: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.pt-8 { padding-top: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.h-16 { height: 4rem; }
.w-16 { width: 4rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-none { max-width: none; }

.grid { grid-template-columns: minmax(0, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.border-t { border-top: 1px solid; }
.border-gray-700 { border-color: #374151; }
.shadow { box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12), 0 1px 2px rgba(15, 23, 42, 0.08); }
.transition { transition: all 0.2s ease; }

.bg-white { background: #ffffff; }
.bg-gray-50 { background: #f9fafb; }
.bg-gray-100 { background: #f3f4f6; }
.bg-gray-800 { background: #1f2937; }
.bg-blue-50 { background: var(--theme-primary-soft); }
.bg-blue-100 { background: var(--theme-primary-soft); }
.bg-blue-600 { background: var(--theme-primary); }

.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-white { color: #ffffff; }
.text-blue-600 { color: var(--theme-primary); }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }

.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.prose p { margin-bottom: 1rem; }
.prose h2 { margin-top: 1.5rem; }

.hover\:bg-blue-700:hover { background: var(--theme-primary-dark); }
.hover\:bg-gray-100:hover { background: #f3f4f6; }
.hover\:text-blue-600:hover { color: var(--theme-primary); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px rgba(15, 23, 42, 0.12), 0 2px 4px rgba(15, 23, 42, 0.08); }

nav.bg-white {
  position: sticky;
  top: 0;
  z-index: 20;
}

section.bg-blue-600 {
  background: linear-gradient(135deg, var(--theme-primary-dark) 0%, var(--theme-primary) 65%, color-mix(in srgb, var(--theme-primary) 72%, #0f766e) 100%);
}

a.rounded-lg {
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.rounded-lg:hover {
  transform: translateY(-1px);
}

footer ul {
  list-style: none;
}

.site-container {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 800;
  color: #0f172a;
}

.site-logo__mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--theme-primary);
  color: #fff;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--theme-primary) 28%, transparent);
}

.site-logo__text {
  overflow-wrap: anywhere;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #475569;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--theme-primary);
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-weight: 750;
  white-space: nowrap;
}

.site-header__phone span {
  color: #cbd5e1;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), color-mix(in srgb, var(--theme-primary) 80%, #0f172a) 62%, var(--theme-primary)),
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.2), transparent 35%);
  color: #fff;
}

.page-hero,
.service-hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), color-mix(in srgb, var(--theme-primary) 76%, #0f172a)),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.2), transparent 32%);
  color: #fff;
}

.page-hero__inner {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.page-hero__inner > div {
  max-width: 760px;
}

.page-hero h1,
.service-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.page-hero p,
.service-hero p {
  color: #dbeafe;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.service-hero__grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 3rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.service-hero .btn {
  margin-top: 1.6rem;
}

.home-hero__grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: 3rem;
  align-items: center;
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

.eyebrow,
.section-heading span,
.service-area span,
.emergency-banner span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: color-mix(in srgb, var(--theme-primary) 30%, #0f172a);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero .eyebrow,
.page-hero .eyebrow,
.service-hero .eyebrow,
.emergency-banner span {
  color: #bfdbfe;
}

.home-hero h1 {
  max-width: 780px;
  margin: 0 0 1.25rem;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 660px;
  color: #dbeafe;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-intro {
  max-width: 680px;
  margin-top: 1.25rem;
  color: #e0f2fe;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.1rem;
  border-radius: 10px;
  font-weight: 800;
}

.btn-large {
  min-height: 54px;
  padding-inline: 1.35rem;
}

.btn-light {
  background: #fff;
  color: var(--theme-primary);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.quote-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.quote-form h2 {
  margin: 0;
  font-size: 1.45rem;
}

.quote-form p {
  color: #64748b;
  margin-bottom: 0.25rem;
}

.quote-form label {
  display: grid;
  gap: 0.34rem;
  color: #334155;
  font-size: 0.86rem;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  padding: 0.82rem 0.9rem;
  color: #0f172a;
  font: inherit;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--theme-primary) 18%, transparent);
  border-color: var(--theme-primary);
}

.quote-form button {
  border: 0;
  border-radius: 10px;
  padding: 0.95rem 1rem;
  background: var(--theme-primary);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.quote-form--compact {
  border-color: #e2e8f0;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
}

.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}

.trust-bar__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-bar__grid > div {
  padding: 1.15rem;
  text-align: center;
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  color: #0f172a;
}

.trust-bar span {
  color: #64748b;
  font-size: 0.86rem;
}

.stars {
  color: #f59e0b;
}

.home-section {
  padding: 5rem 0;
  background: #fff;
}

.home-section--soft {
  background: #f6f8fb;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.service-area h2,
.emergency-banner h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.12;
}

.section-heading p,
.service-area p {
  margin-top: 0.9rem;
  color: #64748b;
  font-size: 1.06rem;
}

.home-services-grid,
.benefit-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-service-card,
.benefit-grid > div,
.review-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.home-service-card {
  display: grid;
  gap: 0.65rem;
}

.home-service-card__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--theme-primary-soft);
  color: var(--theme-primary);
  font-weight: 900;
}

.home-service-card h3,
.benefit-grid strong,
.review-card strong {
  color: #0f172a;
  font-size: 1.06rem;
}

.home-service-card p,
.benefit-grid p,
.review-card p {
  color: #64748b;
}

.home-service-card strong,
.text-link {
  color: var(--theme-primary);
}

.split-panel,
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.split-panel > div,
.content-grid article,
.legal-content,
.notice-panel {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.content-grid article h2,
.legal-content h2 {
  margin: 0 0 0.85rem;
  color: #0f172a;
  font-size: 1.45rem;
}

.content-grid article h2:not(:first-child),
.legal-content h2 {
  margin-top: 1.5rem;
}

.content-grid article p,
.split-panel p,
.legal-content p,
.notice-panel p {
  color: #475569;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #334155;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--theme-primary);
  font-weight: 900;
}

.faq-list {
  max-width: 920px;
}

.faq-list details {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  padding: 1rem 1.15rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.faq-list details + details {
  margin-top: 0.85rem;
}

.faq-list summary {
  cursor: pointer;
  color: #0f172a;
  font-weight: 800;
}

.faq-list p {
  margin-top: 0.8rem;
  color: #64748b;
}

.value-strip,
.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.credential-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-strip > div,
.credential-grid > div,
.team-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.value-strip strong,
.credential-grid strong,
.team-card strong {
  color: #0f172a;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.team-card__photo {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--theme-primary), color-mix(in srgb, var(--theme-primary) 70%, #0f172a));
}

.legal-content {
  max-width: 860px;
}

.legal-content a {
  color: var(--theme-primary);
  font-weight: 700;
}

.process-strip {
  background: #0f172a;
  color: #fff;
  padding: 3rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.8rem;
  align-items: start;
  padding: 1rem;
}

.process-grid span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--theme-primary);
  font-weight: 900;
}

.process-grid p {
  color: #cbd5e1;
}

.about-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.about-snippet {
  color: #475569;
  font-size: 1.12rem;
  margin-bottom: 1.25rem;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.review-card {
  display: grid;
  gap: 0.75rem;
}

.review-card small {
  color: #64748b;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.suburb-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.suburb-link-grid a {
  padding: 0.8rem 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
}

.suburb-link-grid a:hover {
  border-color: var(--theme-primary);
  color: var(--theme-primary);
}

.emergency-banner {
  padding: 3.25rem 0;
  background: linear-gradient(135deg, #0f172a, var(--theme-primary));
  color: #fff;
}

.emergency-banner h2 {
  color: #fff;
}

.emergency-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.emergency-banner a {
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  background: #fff;
  color: var(--theme-primary);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 3.5rem 0 1.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.site-logo--footer {
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a,
.nap span {
  color: #cbd5e1;
}

.site-footer h3 {
  margin-bottom: 0.85rem;
  color: #fff;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
}

.site-footer a:hover {
  color: #fff;
}

.nap {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.nap strong {
  color: #fff;
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.16);
  color: #94a3b8;
  text-align: center;
}

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

@media (max-width: 767px) {
  .h-16 {
    height: auto;
  }

  nav .justify-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  nav .space-x-8 {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  nav .space-x-8 > * + * {
    margin-left: 0;
  }

  .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .text-4xl {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}

@media (max-width: 980px) {
  .site-header__inner,
  .site-header__right {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header__inner {
    padding: 0.9rem 0;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .home-hero__grid,
  .page-hero__inner,
  .service-hero__grid,
  .about-map-grid,
  .split-panel,
  .content-grid,
  .service-area,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero__grid {
    min-height: auto;
  }

  .trust-bar__grid,
  .home-services-grid,
  .benefit-grid,
  .review-grid,
  .process-grid,
  .value-strip,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-container {
    width: min(100% - 1rem, 1180px);
  }

  .site-logo__text {
    font-size: 0.98rem;
  }

  .site-header__phone,
  .hero-actions .btn,
  .quote-form button {
    width: 100%;
  }

  .home-hero__grid {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    gap: 2rem;
  }

  .quote-form {
    padding: 1rem;
    border-radius: 14px;
  }

  .trust-bar__grid,
  .home-services-grid,
  .benefit-grid,
  .review-grid,
  .process-grid,
  .value-strip,
  .credential-grid,
  .suburb-link-grid {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 3.5rem 0;
  }

  .emergency-banner__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .emergency-banner a {
    width: 100%;
    text-align: center;
  }
}
