:root {
  --primary: #0B5FFF;
  --secondary: #0F766E;
  --text: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #dbe2ea;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--bg-soft);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
}

p {
  margin-top: 0;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.logo-with-img {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-with-img:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo-with-img img {
  height: clamp(40px, 5.5vw, 52px);
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 1rem;
}

.desktop-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.45rem;
}

.phone-link svg,
.menu-toggle svg,
.trust-items svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--primary);
  background: transparent;
  padding: 0.45rem;
  border-radius: 0.4rem;
  cursor: pointer;
  color: var(--primary);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 4%;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

.page-hero {
  padding: 2.75rem 0 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero-lead {
  color: var(--muted);
  max-width: 52rem;
  margin: 0 0 0.25rem;
}

.services-back {
  margin-top: 1.75rem;
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.05rem;
  border-radius: 0.45rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  text-decoration: none;
  opacity: 0.94;
}

.btn-secondary {
  border-color: var(--secondary);
  color: var(--secondary);
  background: #fff;
}

.btn-secondary:hover {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.03);
}

.hero-image,
.about-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.75rem;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.12);
}

.trust-strip {
  background: var(--primary);
  padding: 0.7rem 0;
}

.trust-items {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  flex: 1 1 230px;
  color: #fff;
}

.trust-item strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  font-weight: 700;
  color: #fff;
}

.trust-item span {
  display: block;
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.trust-item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #fff;
}

.trust-items p {
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.why-choose-intro {
  max-width: 48rem;
  margin-bottom: 1.35rem;
}

.cards-why .card h3 {
  margin-bottom: 0.45rem;
}

.card {
  border: 1px solid #e3e9f0;
  border-radius: 0.55rem;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
}

.feature-list,
.process-list {
  padding-left: 1.2rem;
  margin: 0;
}

.feature-list li,
.process-list li {
  margin-bottom: 0.5rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.areas-copy h2 {
  margin-bottom: 0.65rem;
}

.areas-copy > p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.areas-benefits {
  margin: 0;
  padding-left: 1.2rem;
}

.areas-benefits li {
  margin-bottom: 0.5rem;
}

.areas-locations {
  border: 1px solid var(--border);
  border-radius: 0.55rem;
  background: var(--bg-soft);
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
}

.areas-pin-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.areas-pin-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--text);
}

.areas-pin-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.areas-pin-list li:first-child {
  padding-top: 0;
}

.areas-pin-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--primary);
}

.areas-pin-list svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.areas-pin-list svg circle {
  fill: currentColor;
  stroke: none;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  border-radius: 0.9rem;
  border: 1px solid #e6eef6;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.06);
  padding: 0.95rem 1rem;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.review-id {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #334155;
  background: #edf8ff;
  flex-shrink: 0;
}

.review-name {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
}

.review-suburb {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
}

.review-stars {
  margin: 0 0 0 auto;
  color: #fbbf24;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1;
}

.review-quote {
  margin: 0;
  color: #1e293b;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.12);
}

.process-intro {
  max-width: 48rem;
  margin-bottom: 1.25rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  background: #fff;
  border: 1px solid #e3e9f0;
  border-radius: 0.7rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
}

.process-card h3 {
  margin: 0 0 0.45rem;
}

.process-card p {
  margin: 0;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
}

.narrow {
  max-width: 740px;
}

.section-intro {
  color: var(--muted);
}

.services-intro {
  max-width: 48rem;
  margin-bottom: 1.25rem;
}

.plumber-types-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

details {
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  padding: 0.8rem 0.9rem;
  background: #fff;
  margin-bottom: 0.7rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-embed {
  border: 1px solid #d9e3ec;
  border-radius: 0.55rem;
  min-height: 280px;
  padding: 0.8rem;
  background: #fff;
}

.hours h3 {
  margin-bottom: 0.5rem;
}

.hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 0.35rem 0;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  padding: 0.65rem 0.7rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(11, 95, 255, 0.25);
  outline-offset: 1px;
  border-color: var(--primary);
}

.final-cta {
  padding: 3rem 0;
  text-align: center;
  background: #0f172a;
  color: #fff;
}

.final-cta h2 {
  color: #fff;
}

.site-footer {
  background: #0b1324;
  color: #e5e7eb;
  padding: 2.6rem 0;
}

.site-footer a {
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.site-footer ul {
  margin: 0;
  padding-left: 1rem;
}

.copyright-bar {
  background: #060b14;
  color: #cbd5e1;
  padding: 0.8rem 0;
}

.copyright-bar p {
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 900px) {
  .desktop-nav,
  .phone-number {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .cards,
  .contact-grid,
  .footer-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.2rem 0;
  }

  .trust-item {
    width: 100%;
  }

}
