/* Sydney Clean Pro — Design System
   Premium / minimal / editorial. Navy + white + soft grey, aqua/royal-blue/emerald accents used sparingly. */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0c1d31;
  --navy-2: #13294b;
  --navy-soft: #1c3557;
  --white: #ffffff;
  --grey-50: #f6f8fa;
  --grey-100: #eef1f4;
  --grey-300: #cbd4dd;
  --grey-500: #6b7a8c;
  --ink-muted: #4a5a6c;
  --royal: #2a5fd6;
  --aqua: #1fc9c0;
  --emerald: #1fae7a;
  --gradient-brand: linear-gradient(135deg, var(--royal) 0%, var(--aqua) 100%);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 1px 2px rgba(12,29,49,0.04), 0 8px 24px rgba(12,29,49,0.06);
  --shadow-elevated: 0 4px 16px rgba(12,29,49,0.08), 0 24px 48px rgba(12,29,49,0.08);
  --max-width: 1240px;
  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 4.4vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.2em; color: var(--ink-muted); }
li { margin-bottom: 0.4em; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal);
  background: rgba(42,95,214,0.07);
  border: 1px solid rgba(42,95,214,0.15);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--grey-100);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand-logo img { height: 52px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}
.main-nav a:hover { color: var(--royal); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions { display:flex; align-items:center; gap:14px; }
.nav-toggle { display: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-elevated); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--grey-300);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--royal); color: var(--royal); }
.btn-ghost { background: var(--grey-50); color: var(--navy); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-full { width: 100%; }
.btn-whatsapp {
  background: #ffffff;
  border: 1.5px solid var(--grey-300);
  color: var(--navy);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 82% 8%, rgba(31,201,192,0.10) 0%, rgba(31,201,192,0) 70%),
    radial-gradient(50% 50% at 4% 30%, rgba(42,95,214,0.08) 0%, rgba(42,95,214,0) 70%),
    var(--white);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .lede { font-size: 1.14rem; max-width: 46ch; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
}
.hero-trust span {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-2);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-trust span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: inline-block;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }

/* ===== Lead form card ===== */
.lead-form-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  padding: 30px;
  position: relative;
}
.lead-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(140deg, rgba(42,95,214,0.25), rgba(31,201,192,0.08) 40%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.lead-form-card h3 { margin-bottom: 4px; }
.lead-form-card .form-sub { font-size: 0.9rem; margin-bottom: 20px; }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-2);
  margin-bottom: 6px;
}
.form-row select,
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-100);
  background: var(--grey-50);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-row select:focus,
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--royal);
  background: var(--white);
}
.form-row select:disabled, .form-row input:disabled {
  background: var(--grey-100);
  color: var(--ink-muted);
}
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-footnote { font-size: 0.78rem; color: var(--grey-500); margin-top: 14px; text-align: center; }
.form-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0; color: var(--grey-500); font-size: 0.8rem;
}
.form-divider::before, .form-divider::after { content:''; flex:1; height:1px; background: var(--grey-100); }
.form-success {
  display: none;
  text-align: center;
  padding: 20px 6px;
}
.form-success.active { display: block; }
.form-success .check {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.3rem;
}

/* ===== Sections ===== */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 44px; text-align: left; }
.bg-grey { background: var(--grey-50); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2, .bg-navy h3, .bg-navy p { color: #fff; }
.bg-navy .muted { color: rgba(255,255,255,0.68); }

/* ===== Grids / Cards ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
  border-color: transparent;
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-brand);
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.service-card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 14px; }
.service-card .card-link { font-size: 0.86rem; font-weight: 600; color: var(--royal); }

.service-group-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 40px 0 16px;
}
.service-group-label:first-of-type { margin-top: 0; }

.step-card { text-align: left; }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--royal);
  background: rgba(42,95,214,0.08);
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 10px; }
.trust-item { text-align: left; }
.trust-item h4 { font-size: 1rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.88rem; margin-bottom: 0; }

/* ===== Suburb / link grid ===== */
.link-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.link-pill {
  font-size: 0.86rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  color: var(--navy-2);
  transition: all 0.15s ease;
}
.link-pill:hover { background: var(--gradient-brand); color: #fff; border-color: transparent; }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--grey-100);
  padding: 22px 0;
}
.faq-item h4 { font-size: 1.02rem; margin-bottom: 8px; }
.faq-item p { font-size: 0.94rem; margin-bottom: 0; }

/* ===== Checklist ===== */
.checklist { list-style: none; padding-left: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--navy-2);
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 6px;
  background: var(--gradient-brand);
}

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #fff; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; opacity: 0.7; }
.footer-col a, .footer-col p { color: rgba(255,255,255,0.72); font-size: 0.9rem; display: block; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.footer-suburbs-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ===== WhatsApp floating button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-elevated);
  color: #fff;
  font-size: 1.4rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb { font-size: 0.82rem; color: var(--grey-500); margin-bottom: 18px; }
.breadcrumb a { color: var(--grey-500); }
.breadcrumb a:hover { color: var(--royal); }

/* ===== Content page (blog / legal) ===== */
.content-page { max-width: 760px; margin: 0 auto; padding: 60px 0 100px; }
.content-page h1 { margin-bottom: 10px; }
.content-page .meta { font-size: 0.86rem; color: var(--grey-500); margin-bottom: 40px; }
.content-page h2 { margin-top: 40px; font-size: 1.5rem; }
.content-page h3 { margin-top: 26px; font-size: 1.15rem; }
.content-page ul, .content-page ol { color: var(--ink-muted); }
.content-page p { font-size: 1.02rem; }
.post-cta {
  margin-top: 44px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  text-align: center;
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }
.blog-card .tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--royal); margin-bottom: 10px; display: inline-block;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.88rem; }

/* ===== CTA band ===== */
.cta-band {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content:'';
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(31,201,192,0.18), transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.72); margin-bottom: 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2, .trust-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .main-nav { display: none; }
  section { padding: 56px 0; }
  .grid-3, .grid-4, .grid-2, .trust-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-two-col { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
}

/* ===== Reviews ===== */
.review-card {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--white);
}
.review-stars { color: #f5a623; font-size: 0.95rem; margin-bottom: 10px; letter-spacing: 1px; }
.review-card p { font-size: 0.92rem; margin-bottom: 10px; }
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.review-note { font-size: 0.76rem; color: var(--grey-500); margin-top: 8px; font-style: italic; }
.reviews-aggregate { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.reviews-aggregate .score { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; }
.reviews-aggregate .stars { color: #f5a623; font-size: 1.2rem; }
.reviews-aggregate .count { font-size: 0.86rem; color: var(--grey-500); }

/* ===== Nav dropdown ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
}
.nav-dropdown-trigger:hover { color: var(--royal); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  padding: 10px;
  z-index: 50;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-2);
}
.nav-dropdown-menu a:hover { background: var(--grey-50); color: var(--royal); }

/* ===== Logo: icon + live text wordmark (replaces flattened raster wordmark) ===== */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon { height: 42px; width: auto; display: block; }
.brand-text {
  font-family: var(--font-display);
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}
.brand-text strong {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.brand-text em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
  white-space: nowrap;
}
.brand-text-white strong { color: #fff; }
.brand-text-white em { color: rgba(255,255,255,0.6); }
