@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --black: #1A1A1A;
  --white: #ffffff;
  --accent: #2D6B6E;
  --accent-dark: #1F4C4E;
  --mid: #EAF2F1;
  --muted: #888888;
  --border: #DCE6E5;
  --tint: #F2F8F7;
}

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

body {
  background: var(--white);
  color: var(--black);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
}

a { color: inherit; }
img { display: block; }

/* PHONE BANNER */
.phone-banner {
  background: var(--accent);
  color: #ffffff;
  text-align: center;
  padding: 0.85rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.phone-banner a { color: #ffffff; text-decoration: none; font-weight: 500; }

/* NAV */
nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background: rgba(255,255,255,0.97);
  border-bottom: 0.5px solid var(--border);
  backdrop-filter: blur(8px);
}

.logo {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
}
.logo span { color: var(--accent); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

nav > ul { list-style: none; display: flex; gap: 2.2rem; align-items: center; }

.nav-link {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }

.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  border: 0.5px solid var(--border);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 240px;
  max-height: 60vh;
  overflow-y: auto;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--black);
  text-decoration: none;
}
.dropdown li a:hover { background: var(--tint); color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #ffffff !important;
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
}
.mobile-toggle span { width: 22px; height: 2px; background: var(--black); display: block; }

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  gap: 1.1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--black);
}
.mobile-nav a {
  color: var(--black);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.mobile-nav .mobile-suburb-label {
  font-size: 0.78rem; color: #999; letter-spacing: 0.1em; text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  margin-top: 0.5rem;
}
.mobile-nav .mobile-suburb-link {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: #555;
  font-weight: 400;
  letter-spacing: normal;
}

@media (max-width: 960px) {
  nav > ul { display: none; }
  .mobile-toggle { display: flex; }
  nav { padding: 1.1rem 1.5rem; }
}

/* FLOAT CALL */
.float-call {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 500;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.6rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 4px 24px rgba(45,107,110,0.35);
  transition: transform 0.2s;
}
.float-call:hover { transform: translateY(-2px); }

/* HERO */
.hero { padding: 4rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } .hero { padding: 2.5rem 1.5rem; } }

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--accent); }
.hero > .hero-grid > div:first-child > p { font-size: 1.02rem; color: #555; max-width: 440px; margin-bottom: 2rem; line-height: 1.8; }

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #ffffff;
  padding: 1rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-call:hover { opacity: 0.87; }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 1rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 2px;
  margin-left: 1rem;
  transition: all 0.2s;
  background: none;
}
.btn-secondary:hover { background: var(--accent); color: #fff; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-top: 1.4rem; }
.trust-badge { font-size: 0.82rem; color: #444; display: flex; align-items: center; gap: 0.4rem; }
.trust-badge-icon { color: var(--accent); }

.img-stack { display: flex; flex-direction: column; gap: 12px; }

/* PLACEHOLDER IMAGES */
.img-ph {
  background: var(--tint);
  border-radius: 4px;
  border: 0.5px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #9AAEAC;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1rem;
}
.img-ph b { color: var(--accent); font-size: 0.78rem; letter-spacing: 0.04em; }

/* SECTIONS */
section { padding: 4rem; max-width: 1200px; margin: 0 auto; }
@media (max-width: 720px) { section { padding: 3rem 1.5rem; } }

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 1.4rem;
}
h2 span { color: var(--accent); }
.lead { font-size: 1.02rem; color: #555; max-width: 580px; margin-bottom: 2.5rem; line-height: 1.8; }

/* SERVICE / SIGN CARD GRIDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}
.card {
  background: var(--white);
  padding: 2.4rem;
  transition: background 0.2s;
}
.card:hover { background: var(--tint); }
.card-icon {
  width: 40px; height: 40px;
  border: 0.5px solid var(--accent);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--accent);
}
.card h3 { font-family: "Bebas Neue", sans-serif; font-size: 1.35rem; letter-spacing: 0.05em; margin-bottom: 0.6rem; }
.card p { color: #555; font-size: 0.9rem; line-height: 1.7; }

/* CALL STRIP */
.call-strip {
  background: var(--accent);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 720px) { .call-strip { padding: 1.6rem 1.5rem; } }
.call-strip p {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #ffffff;
  letter-spacing: 0.04em;
}
.call-strip a {
  background: var(--white);
  color: var(--accent);
  padding: 0.8rem 1.8rem;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.call-strip a:hover { opacity: 0.85; }

/* WARNING / CHALLENGE GRID */
.warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  margin-top: 2.5rem;
}
.warning-card { background: var(--tint); padding: 2rem; transition: background 0.2s; }
.warning-card:hover { background: var(--mid); }
.warning-num { font-family: "Bebas Neue", sans-serif; font-size: 2.3rem; color: #cfd9d8; line-height: 1; margin-bottom: 0.6rem; }
.warning-card h4 { font-weight: 500; margin-bottom: 0.4rem; font-size: 0.95rem; }
.warning-card p { color: #444; font-size: 0.85rem; line-height: 1.6; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.check { color: var(--accent); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.why-list h4 { font-weight: 500; margin-bottom: 0.2rem; font-size: 0.95rem; }
.why-list p { color: #555; font-size: 0.87rem; line-height: 1.6; }

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border: 0.5px solid var(--border);
}
.process-step { padding: 2.4rem; border-right: 0.5px solid var(--border); }
.process-step:last-child { border-right: none; }
.step-num { font-family: "Bebas Neue", sans-serif; font-size: 2.8rem; color: #cfd9d8; line-height: 1; margin-bottom: 0.9rem; }
.process-step h4 { font-weight: 500; margin-bottom: 0.4rem; font-size: 0.95rem; }
.process-step p { color: #555; font-size: 0.85rem; line-height: 1.6; }

.divider { max-width: 1200px; margin: 0 auto; border-top: 0.5px solid var(--border); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; border: 0.5px solid var(--border); margin-top: 2.5rem; }
.faq-item { border-bottom: 0.5px solid var(--border); padding: 1.6rem 1.8rem; cursor: pointer; transition: background 0.2s; }
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--tint); }
.faq-q { font-weight: 500; font-size: 0.95rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-icon { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { color: #555; font-size: 0.9rem; line-height: 1.7; margin-top: 0.9rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* QUOTE SECTION */
.quote-section { background: var(--tint); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); padding: 5rem 4rem; }
@media (max-width: 720px) { .quote-section { padding: 3rem 1.5rem; } }
.quote-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .quote-inner { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 1.5rem; }
.contact-item h4 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.contact-item p { font-size: 1.02rem; }
.contact-item span { font-size: 0.85rem; color: #666; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.45rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--white);
  border: 0.5px solid var(--border);
  color: var(--black);
  padding: 0.8rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  border-radius: 2px;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { min-height: 90px; resize: vertical; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(45,107,110,0.1);
  border: 0.5px solid var(--accent);
  border-radius: 2px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  text-align: center;
}

/* MAP */
.map-section iframe { width: 100%; height: 340px; border: none; filter: sepia(8%) saturate(85%) hue-rotate(120deg) contrast(95%); }

/* NEARBY PILLS */
.pill-list { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.pill-list a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  background: var(--tint);
}
.pill-list a:hover { background: var(--mid); }

/* PAGE HEADER (suburb pages) */
.page-header { padding: 3.5rem 4rem 1rem; max-width: 1200px; margin: 0 auto; }
@media (max-width: 720px) { .page-header { padding: 2.5rem 1.5rem 0.5rem; } }
.page-header h1 { font-family: "Bebas Neue", sans-serif; font-size: clamp(2.3rem, 5vw, 3.6rem); letter-spacing: 0.02em; line-height: 1; margin-bottom: 1rem; }
.page-header > p { color: #555; max-width: 600px; font-size: 1rem; line-height: 1.8; }

/* FOOTER */
footer { background: var(--black); color: #ccc; padding: 4rem 4rem 2rem; }
@media (max-width: 720px) { footer { padding: 3rem 1.5rem 1.5rem; } }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { color: #fff; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
footer a { color: #aaa; text-decoration: none; display: block; margin-bottom: 0.6rem; font-size: 0.88rem; }
footer a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 0.5px solid #333;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: #777;
}
.footer-disclaimer {
  max-width: 1200px; margin: 1rem auto 0; padding-top: 1rem;
  border-top: 0.5px solid #333;
  font-size: 0.72rem; color: #666; line-height: 1.6;
}
