:root {
  --primary: #ffb400;
  --primary-dark: #d99a00;
  --dark: #0d1117;
  --darker: #06080b;
  --gray: #1c232c;
  --light-gray: #2a323d;
  --text: #e6edf3;
  --muted: #9aa4b2;
  --white: #ffffff;
  --danger: #ff4d4d;
  --success: #3fb950;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius: 10px;
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--white); letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; color: var(--muted); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--darker);
  color: var(--muted);
  font-size: .85rem;
  border-bottom: 1px solid var(--light-gray);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding: .5rem 1.25rem;
  flex-wrap: wrap; gap: .5rem;
}
.topbar a { color: var(--text); }
.topbar .pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); margin-right: .35rem;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 17, 23, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-gray);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--max); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: .6rem; font-weight: 900; color: var(--white); font-size: 1.25rem; }
.logo-mark {
  background: var(--primary); color: var(--dark);
  width: 38px; height: 38px; border-radius: 8px;
  display: grid; place-items: center; font-weight: 900;
}
.logo-img { height: 44px; width: auto; display: block; }
.logo small { display: block; font-size: .65rem; color: var(--muted); font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text); font-weight: 600; font-size: .95rem;
  position: relative; padding: .25rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--primary); border-radius: 2px;
}

.nav-cta {
  background: var(--primary); color: var(--dark) !important;
  padding: .65rem 1.1rem; border-radius: var(--radius); font-weight: 800;
}
.nav-cta:hover { background: var(--primary-dark); color: var(--dark) !important; }

.menu-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 1.6rem; cursor: pointer; line-height: 1; padding: .25rem .5rem; }

@media (max-width: 880px) {
  .nav { position: relative; }
  .menu-toggle { display: block; z-index: 101; position: relative; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--darker);
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 1rem 1rem;
    gap: 0;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .35);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .2s ease, visibility .25s;
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .95rem .25rem;
    border-bottom: 1px solid var(--light-gray);
    font-size: 1.05rem;
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links a.nav-cta {
    background: var(--primary); color: var(--dark) !important;
    border-radius: var(--radius); border: 0;
    text-align: center; margin-top: .75rem; padding: 1rem;
  }
  body.menu-open { overflow: hidden; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.5rem; border-radius: var(--radius);
  font-weight: 800; font-size: 1rem; border: 0; cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary { background: var(--primary); color: var(--dark); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-ghost { background: var(--light-gray); color: var(--white); }
.btn-ghost:hover { background: var(--gray); color: var(--primary); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(13,17,23,.92), rgba(13,17,23,.7)),
    radial-gradient(circle at 20% 30%, rgba(255,180,0,.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,180,0,.15), transparent 50%),
    var(--darker);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 3rem; align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 2rem; } }
.hero h1 span { color: var(--primary); }
.hero p.lead {
  font-size: 1.15rem; color: var(--text); max-width: 560px; margin: 1.25rem 0 1.75rem;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero .badges { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.hero .badges div { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .9rem; }
.hero .badges strong { color: var(--white); }

/* ---------- Carousel ---------- */
.carousel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--gray);
}
.carousel-track { display: flex; height: 100%; transition: transform .6s cubic-bezier(.6,0,.3,1); }
.carousel-slide {
  min-width: 100%; height: 100%;
  display: grid; place-items: center; position: relative;
  background: linear-gradient(135deg, var(--gray), var(--light-gray));
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.carousel-slide img.contain { object-fit: contain; background: var(--darker); }
.carousel-slide .placeholder {
  text-align: center; color: var(--muted);
  border: 2px dashed var(--light-gray);
  padding: 2rem; border-radius: var(--radius);
  width: 80%;
}
.carousel-slide .placeholder strong { color: var(--primary); display: block; font-size: 1.1rem; margin-bottom: .25rem; }
.carousel-slide .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  color: var(--white); font-weight: 700;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); color: var(--white);
  border: 0; width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; display: grid; place-items: center;
  transition: background .2s;
}
.carousel-btn:hover { background: var(--primary); color: var(--dark); }
.carousel-btn.prev { left: .75rem; }
.carousel-btn.next { right: .75rem; }
.carousel-dots {
  position: absolute; bottom: .75rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .4rem;
}
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.4); cursor: pointer; padding: 0;
}
.carousel-dots button.active { background: var(--primary); width: 22px; border-radius: 6px; }

/* ---------- Sections ---------- */
section { padding: 4.5rem 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head .eyebrow {
  display: inline-block; color: var(--primary); font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase; font-size: .8rem;
  margin-bottom: .5rem;
}

/* ---------- Cards / Services ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--gray); border: 1px solid var(--light-gray);
  border-radius: var(--radius); padding: 1.75rem;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
}
.card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(255,180,0,.12); color: var(--primary);
  display: grid; place-items: center; font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card h3 { color: var(--white); }
.card p { font-size: .95rem; }
.card a.more { color: var(--primary); font-weight: 700; font-size: .9rem; }

/* ---------- USP strip ---------- */
.usp {
  background: var(--darker);
  padding: 2.5rem 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.usp .grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); text-align: center; }
.usp h3 { color: var(--primary); font-size: 1.8rem; margin-bottom: .15rem; }
.usp p { font-size: .85rem; margin: 0; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.steps .grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step {
  background: var(--gray); padding: 2rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--light-gray); position: relative;
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -18px; left: 1.5rem;
  background: var(--primary); color: var(--dark);
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 10px; font-weight: 900;
}
.step h3 { margin-top: .5rem; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--gray); padding: 1.75rem; border-radius: var(--radius);
  border: 1px solid var(--light-gray);
}
.testimonial p { color: var(--text); font-style: italic; }
.testimonial .stars { color: var(--primary); margin-bottom: .5rem; }
.testimonial .author {
  display: flex; align-items: center; gap: .75rem; margin-top: 1rem;
  font-weight: 700; color: var(--white);
}
.avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--primary);
  color: var(--dark); display: grid; place-items: center; font-weight: 900;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #ff8a00);
  color: var(--dark); padding: 3rem 0;
}
.cta-banner h2 { color: var(--dark); }
.cta-banner p { color: rgba(0,0,0,.75); }
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cta-banner .btn-outline { border-color: var(--dark); color: var(--dark); }
.cta-banner .btn-outline:hover { background: var(--dark); color: var(--primary); }
.cta-banner .btn-primary { background: var(--dark); color: var(--primary); }
.cta-banner .btn-primary:hover { background: var(--darker); }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--gray); border: 1px solid var(--light-gray);
  border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden;
}
.faq-item summary {
  padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 700;
  color: var(--white); list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.5rem; top: 50%;
  transform: translateY(-50%); color: var(--primary); font-size: 1.4rem; font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 1.5rem 1.25rem; color: var(--muted); }

/* ---------- Footer ---------- */
footer {
  background: var(--darker); padding: 3.5rem 0 1rem;
  border-top: 1px solid var(--light-gray);
}
footer .grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 880px) { footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer .grid { grid-template-columns: 1fr; } }
footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: .5rem; }
footer ul a { color: var(--muted); font-size: .92rem; }
footer ul a:hover { color: var(--primary); }
.copyright {
  text-align: center; padding-top: 2rem; margin-top: 2.5rem;
  border-top: 1px solid var(--light-gray); color: var(--muted); font-size: .85rem;
}

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; margin-bottom: .35rem; font-weight: 600; font-size: .9rem; color: var(--white); }
input, textarea, select {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius);
  background: var(--dark); border: 1px solid var(--light-gray);
  color: var(--white); font-size: .95rem; font-family: inherit;
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--primary); outline-offset: 0; border-color: var(--primary); }
textarea { resize: vertical; min-height: 130px; }

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed; bottom: 1.25rem; right: 1.25rem;
  background: var(--primary); color: var(--dark);
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.4); z-index: 99;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform: translateY(0)} 50%{transform: translateY(-5px)} }
.float-call:hover { background: var(--primary-dark); color: var(--dark); }

/* ---------- Page header (sub pages) ---------- */
.page-header {
  background: linear-gradient(135deg, rgba(13,17,23,.92), rgba(13,17,23,.7)),
              radial-gradient(circle at 30% 50%, rgba(255,180,0,.2), transparent 60%),
              var(--darker);
  padding: 4rem 0 3rem; text-align: center;
}
.breadcrumb { color: var(--muted); font-size: .85rem; margin-bottom: .75rem; }
.breadcrumb a { color: var(--primary); }

/* ---------- Service detail / 2-col ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split img, .split .img-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gray), var(--light-gray));
  border: 2px dashed var(--light-gray);
  display: grid; place-items: center; color: var(--muted);
}

ul.checks { list-style: none; }
ul.checks li {
  padding-left: 1.75rem; position: relative; margin-bottom: .5rem;
  color: var(--text);
}
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: rgba(63,185,80,.15);
  color: var(--success); border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 900;
}

/* ---------- Suburb chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  background: var(--gray); border: 1px solid var(--light-gray);
  color: var(--text); padding: .5rem 1rem; border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  text-decoration: none; transition: background .15s, border-color .15s, color .15s;
}
a.chip { color: var(--text); }
a.chip:hover {
  background: var(--primary); border-color: var(--primary);
  color: var(--dark);
}

.alert {
  background: rgba(255,180,0,.1); border-left: 4px solid var(--primary);
  padding: 1rem 1.25rem; border-radius: 8px; color: var(--text);
  margin: 1rem 0;
}

/* ---------- Suburb finder dropdown ---------- */
.suburb-finder {
  max-width: 520px; margin: 0 auto;
  background: var(--gray); border: 1px solid var(--light-gray);
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
}
.suburb-finder select {
  width: 100%; padding: .9rem 1rem;
  background: var(--dark); border: 1px solid var(--light-gray);
  color: var(--white); border-radius: var(--radius);
  font-size: 1rem; font-weight: 600; font-family: inherit;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffb400'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.suburb-finder select:focus { outline: 2px solid var(--primary); outline-offset: 0; border-color: var(--primary); }
.suburb-finder optgroup { color: var(--primary); font-weight: 800; background: var(--darker); }
.suburb-finder option { color: var(--white); background: var(--dark); font-weight: 500; }
