:root {
  --primary: #22d3ee;
  --primary-hover: #06b6d4;
  --accent: #38bdf8;
  --accent-green: #10b981;
  --bg-dark: #070d18;
  --bg-surface: #131d31;
  --bg-surface-alt: #0b1220;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border: #23334d;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }
body { background: var(--bg-dark); color: var(--text-main); line-height: 1.6; }

/* Navbar */
header {
  background: rgba(7, 13, 24, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-size: 1.3rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--primary); }

.nav-menu { display: flex; align-items: center; gap: 2rem; }
.dropdown { position: relative; }
.dropdown-btn { color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; gap: 0.35rem; cursor: pointer; text-transform: uppercase; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 280px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 100;
}
.dropdown-menu a { display: block; padding: 0.65rem 1.2rem; color: var(--text-muted); text-decoration: none; font-size: 0.88rem; }
.dropdown-menu a:hover { background: var(--bg-surface-alt); color: var(--primary); }

.nav-link { color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; }
.nav-link:hover { color: var(--primary); }

.nav-icons { display: flex; align-items: center; gap: 1.25rem; }
.nav-icons a { color: #fff; text-decoration: none; display: flex; align-items: center; }
.nav-icons a:hover { color: var(--primary); }

.btn-meeting { background: var(--primary); color: #000; padding: 0.65rem 1.4rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; display: inline-block; border: none; cursor: pointer; }
.btn-meeting:hover { background: var(--primary-hover); }

/* Sub-page Banner */
.page-hero {
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.4) 0%, rgba(7, 13, 24, 0.85) 75%, #070d18 100%),
              url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=2000&q=80') center center / cover no-repeat;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.page-hero h1 { font-size: 2.75rem; font-weight: 800; margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-muted); font-size: 1.15rem; max-width: 750px; margin: 0 auto; }

.container { max-width: 1150px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.card-glass { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; padding: 2.25rem; }

.section-title { text-align: center; margin: 4rem 0 2.5rem; }
.section-title h2 { font-size: 2.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.section-title p { color: var(--text-muted); font-size: 1rem; }

.service-area { background: var(--bg-surface-alt); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; text-align: center; margin: 4rem 0; }
.suburb-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1.25rem; }
.suburb-pill { background: var(--bg-surface); border: 1px solid var(--border); padding: 0.45rem 1rem; border-radius: 20px; font-size: 0.88rem; }

.booking-form { max-width: 600px; margin: 0 auto; background: var(--bg-surface); border: 1px solid var(--border); padding: 2.5rem; border-radius: 12px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 6px; color: #fff; font-size: 0.95rem; }

/* Authority Brand Footer */
.brand-footer-authority {
  background: #040811;
  border-top: 1px solid var(--border);
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  margin-top: 4rem;
}
.brand-logo-center {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.brand-logo-center span { color: var(--primary); }

.authority-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.authority-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}
.footer-nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--primary); }

.coverage-footer-box {
  margin-bottom: 3.5rem;
}
.coverage-footer-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}
.coverage-footer-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.suburb-inline-list {
  color: #94a3b8;
  font-size: 0.9rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}
.suburb-inline-list span {
  margin: 0 0.35rem;
  color: #334155;
}

.newsletter-wrap {
  max-width: 520px;
  margin: 0 auto 4rem;
}
.newsletter-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}
.newsletter-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  background: #0b1220;
  border: 1px solid var(--border);
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form button {
  background: #0284c7;
  color: #fff;
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #0369a1; }

.compliance-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
}

footer { border-top: 1px solid var(--border); padding: 2.5rem 1.5rem; text-align: center; color: var(--text-muted); font-size: 0.85rem; }
@media (max-width: 900px) { .nav-menu { display: none; } }
@media (max-width: 600px) { .newsletter-form { flex-direction: column; } .compliance-bar { gap: 1rem; flex-direction: column; } }