/* ── GLIDE WINDOW CLEANING — SHARED STYLESHEET ── */

:root {
  --white: #F8FAFC;
  --card-bg: #EFF3F8;
  --dark: #0D1117;
  --dark2: #111827;
  --blue: #1B6FD8;
  --blue-bright: #2EA8FF;
  --silver: #BFC7D1;
  --body-text: #1F2937;
  --light-text: #6B7280;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-bright); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid var(--silver); }
.btn-outline:hover { border-color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(3,8,16,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo { display: flex; align-items: center; height: 68px; padding: 14px 0; }
.nav-logo img { height: 100%; width: auto; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.88); font-size: 1rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone a { color: var(--silver); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-phone a:hover { color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(191,199,209,0.1);
  z-index: 99;
  padding: 20px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.mobile-menu a { color: var(--silver); font-size: 1.1rem; }

/* ── SECTION TYPOGRAPHY ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--body-text); margin-bottom: 16px; }
.section-title-light { color: #fff; }
.section-sub { color: var(--light-text); font-size: 1rem; max-width: 520px; line-height: 1.7; margin-bottom: 56px; }
.section-sub-light { color: var(--silver); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,17,23,0.62) 0%, rgba(13,17,23,0.45) 100%);
  z-index: 0;
}

.light-rays { position: absolute; inset: 0; overflow: hidden; }
.ray {
  position: absolute;
  top: -10%; width: 2px; height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(27,111,216,0.15), transparent);
  animation: rayMove 8s ease-in-out infinite;
}
.ray:nth-child(1) { left: 15%; animation-delay: 0s; }
.ray:nth-child(2) { left: 30%; animation-delay: 1.5s; width: 1px; }
.ray:nth-child(3) { left: 55%; animation-delay: 3s; }
.ray:nth-child(4) { left: 75%; animation-delay: 4.5s; width: 1px; }
.ray:nth-child(5) { left: 88%; animation-delay: 6s; }

@keyframes rayMove {
  0%, 100% { opacity: 0; transform: translateX(-20px); }
  50% { opacity: 1; transform: translateX(20px); }
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,111,216,0.15);
  border: 1px solid rgba(27,111,216,0.3);
  color: var(--blue-bright);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
}

.hero h1 { font-size: clamp(3rem, 7vw, 5.5rem); color: #fff; margin-bottom: 24px; }
.hero h1 span { color: var(--blue-bright); }
.hero-sub { color: var(--silver); font-size: 1.15rem; font-weight: 300; margin-bottom: 40px; max-width: 540px; line-height: 1.7; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { border-left: 2px solid var(--blue); padding-left: 16px; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2rem; color: #fff; line-height: 1; }
.stat-label { color: var(--silver); font-size: 0.85rem; margin-top: 4px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--silver);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 500; color: var(--body-text); }
.trust-icon {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── SERVICES ── */
.services { background: var(--card-bg); padding: 96px 0; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border-top: 3px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  border-top-color: var(--blue);
  box-shadow: 0 12px 40px rgba(27,111,216,0.12);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(27,111,216,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--body-text); }
.service-card p { font-size: 0.9rem; color: var(--light-text); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--dark2); padding: 96px 0; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.step { padding-left: 24px; border-left: 2px solid rgba(27,111,216,0.3); }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 3.5rem; color: rgba(27,111,216,0.2); line-height: 1; margin-bottom: 8px; }
.step h3 { font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.step p { color: var(--silver); font-size: 0.9rem; line-height: 1.7; }

/* ── BEFORE/AFTER SLIDER ── */
.before-after { padding: 96px 0; background: var(--white); }

.slider-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.slider-placeholder { height: 460px; position: relative; overflow: hidden; }

.slider-before-panel {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a2030 0%, #2a3550 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.slider-after-panel {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #deeeff 0%, #f0f8ff 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}

.window-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; width: 180px; }
.window-pane { aspect-ratio: 1; border-radius: 3px; border: 2px solid; }
.window-pane.dirty { background: rgba(60,80,100,0.4); border-color: rgba(100,120,140,0.3); position: relative; overflow: hidden; }
.window-pane.dirty::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(80,100,120,0.2), rgba(80,100,120,0.2) 2px, transparent 2px, transparent 8px);
}
.window-pane.clean { background: rgba(200,230,255,0.6); border-color: rgba(27,111,216,0.3); box-shadow: inset 0 0 8px rgba(200,230,255,0.5); }

.panel-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; letter-spacing: 0.05em; text-transform: uppercase; }

.slider-divider {
  position: absolute; top: 0; bottom: 0;
  width: 3px; background: #fff;
  left: 50%; transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.slider-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 11;
}
.slider-handle svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── SUBURBS GRID ── */
.suburbs { background: var(--card-bg); padding: 72px 0; }
.suburbs-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.suburb-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid var(--silver);
  border-radius: 100px;
  color: var(--body-text); font-size: 0.875rem; font-weight: 500;
  transition: all 0.2s;
}
.suburb-pill:hover { border-color: var(--blue); color: var(--blue); background: rgba(27,111,216,0.04); }
.suburb-pill::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; opacity: 0.5; }

/* ── REVIEWS ── */
.reviews { background: var(--dark2); padding: 96px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(191,199,209,0.1);
  border-radius: 12px; padding: 32px;
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; fill: #F59E0B; }
.review-text { color: var(--silver); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff;
  flex-shrink: 0;
}
.reviewer-name { color: #fff; font-weight: 500; font-size: 0.9rem; }
.reviewer-suburb { color: var(--silver); font-size: 0.8rem; }

/* ── PRICING ── */
.pricing { background: var(--white); padding: 96px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--card-bg);
  border-radius: 16px; padding: 36px 28px;
  border: 1.5px solid transparent;
  position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { border-color: var(--silver); }
.pricing-card.featured { background: var(--dark); border-color: var(--blue); transform: scale(1.03); }
.pricing-card.featured:hover { border-color: var(--blue-bright); }
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.pricing-tier { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.pricing-card.featured .pricing-tier { color: var(--blue-bright); }
.pricing-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 3rem; color: var(--body-text); line-height: 1; margin-bottom: 4px; }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-from { font-size: 0.8rem; color: var(--light-text); margin-bottom: 20px; }
.pricing-card.featured .pricing-from { color: var(--silver); }
.pricing-desc { font-size: 0.9rem; color: var(--light-text); line-height: 1.6; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--silver); }
.pricing-card.featured .pricing-desc { color: var(--silver); border-color: rgba(191,199,209,0.2); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--body-text); }
.pricing-card.featured .pricing-features li { color: var(--silver); }
.pricing-features li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background-color: rgba(27,111,216,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B6FD8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
  border-radius: 50%;
}
.pricing-card.featured .pricing-features li::before {
  background-color: rgba(46,168,255,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232EA8FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ── QUOTE FORM ── */
.quote-section { background: var(--dark2); padding: 80px 0; }
.quote-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: center; }

/* Left column — matches homepage q-left */
.q-left h2 { color: #fff; font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 10px; }
.q-sub { color: var(--silver); font-size: .9rem; line-height: 1.8; margin-bottom: 32px; }
.price-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.price-row {
  display: flex; align-items: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 14px 18px; transition: background .2s;
}
.price-row:hover { background: rgba(255,255,255,.08); }
.price-row.hl { background: rgba(27,111,216,.15); border-color: rgba(27,111,216,.3); }
.price-row.hl:hover { background: rgba(27,111,216,.2); }
.pr-name { color: rgba(255,255,255,.75); font-size: .875rem; }
.price-row.hl .pr-name { color: #fff; font-weight: 600; }
.q-guarantee {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 18px;
}
.q-guarantee svg { width: 20px; height: 20px; stroke: var(--blue-bright); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.q-guarantee p { color: var(--silver); font-size: .845rem; line-height: 1.65; }
.q-guarantee strong { color: #fff; }
.quote-info h2 { color: #fff; margin-bottom: 16px; }
.quote-info p { color: var(--silver); margin-bottom: 32px; line-height: 1.7; }
.quote-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.quote-bullets li { display: flex; align-items: center; gap: 10px; color: var(--silver); font-size: 0.9rem; }
.quote-bullets li::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
.quote-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(191,199,209,0.1); border-radius: 16px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--silver); margin-bottom: 6px; letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(191,199,209,0.15);
  border-radius: 8px; padding: 12px 14px;
  color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s; outline: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(191,199,209,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group select option { background: var(--dark2); color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; font-weight: 600; border-radius: 8px; }

/* ── FINAL CTA ── */
.final-cta { background: var(--blue); padding: 72px 0; text-align: center; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.05rem; }
.phone-big {
  display: block;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff; letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.phone-big:hover { color: rgba(255,255,255,0.85); }

/* ── INSTANT QUOTE ENGINE (shared) ── */
.pac-container { z-index: 200; }
.qe-wrap { min-height: 460px; display: flex; flex-direction: column; }
.qe-step { display: none; flex-direction: column; flex: 1; animation: qeFade .2s ease; }
@keyframes qeFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.qe-progress { display: flex; gap: 6px; margin-bottom: 24px; }
.qe-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--card-border, #E4EAF3); transition: all .3s; flex-shrink: 0; }
.qe-dot.done { background: var(--blue); }
.qe-dot.cur { background: #0A0F1E; width: 18px; border-radius: 4px; }
.qe-back { background: none; border: none; color: #B0BBCC; font-family: 'DM Sans', sans-serif; font-size: .78rem; cursor: pointer; padding: 0; margin-bottom: 14px; display: flex; align-items: center; gap: 4px; transition: color .2s; }
.qe-back:hover { color: #0A0F1E; }
.qe-back svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.qe-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.55rem; color: #0A0F1E; margin-bottom: 5px; }
.qe-subtitle { font-size: .8rem; color: #B0BBCC; margin-bottom: 20px; }
.qe-addr-row { display: flex; gap: 8px; margin-bottom: 8px; }
.qe-addr-input { flex: 1; background: #F6F8FC; border: 1.5px solid #E4EAF3; border-radius: 8px; padding: 13px 14px; color: #0A0F1E; font-family: 'DM Sans', sans-serif; font-size: .9rem; outline: none; transition: all .2s; min-width: 0; }
.qe-addr-input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(27,111,216,.1); }
.qe-addr-input::placeholder { color: #C8D0DC; }
.qe-addr-btn { background: #0A0F1E; color: #fff; border: none; border-radius: 8px; padding: 13px 16px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .85rem; transition: all .2s; white-space: nowrap; flex-shrink: 0; }
.qe-addr-btn:hover:not(:disabled) { background: var(--blue); }
.qe-addr-btn:disabled { opacity: .4; cursor: not-allowed; }
.qe-reject { background: #FFF4F4; border: 1.5px solid #FFCDD0; border-radius: 10px; padding: 14px 16px; font-size: .82rem; color: #C0392B; line-height: 1.6; margin-top: 4px; }
.qe-reject strong { display: block; font-weight: 700; margin-bottom: 2px; }
.qe-sv-wrap { border-radius: 12px; overflow: hidden; background: #F6F8FC; margin-bottom: 18px; position: relative; aspect-ratio: 16/9; }
.qe-sv-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qe-sv-addr { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.55)); padding: 18px 12px 10px; font-size: .75rem; color: rgba(255,255,255,.9); font-weight: 500; line-height: 1.3; }
.qe-q { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; color: #0A0F1E; margin-bottom: 12px; }
.qe-opts { display: flex; flex-direction: column; gap: 8px; }
.qe-opt { background: #F6F8FC; border: 1.5px solid #E4EAF3; border-radius: 10px; padding: 14px 16px; text-align: left; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .875rem; font-weight: 500; color: #0A0F1E; transition: all .18s; display: flex; align-items: center; justify-content: space-between; }
.qe-opt:hover { border-color: var(--blue); background: #fff; color: var(--blue); }
.qe-opt-arr { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; opacity: .35; flex-shrink: 0; }
.qe-result-addr { font-size: .75rem; color: #B0BBCC; font-weight: 500; margin-bottom: 10px; }
.qe-price-wrap { margin-bottom: 16px; }
.qe-price-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #B0BBCC; margin-bottom: 2px; }
.qe-price-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 3.2rem; color: #0A0F1E; line-height: 1; }
.qe-conf { display: inline-flex; align-items: center; gap: 4px; margin-top: 5px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; }
.qe-conf.high { background: rgba(16,185,129,.1); color: #059669; }
.qe-conf.med { background: rgba(245,158,11,.1); color: #D97706; }
.qe-includes { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.qe-inc-label { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #B0BBCC; margin-bottom: 2px; }
.qe-inc { font-size: .8rem; color: #3A4A5E; display: flex; align-items: flex-start; gap: 7px; line-height: 1.45; }
.qe-inc::before { content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.qe-book-btn { width: 100%; padding: 14px; font-size: .9rem; font-weight: 700; border-radius: 8px; background: var(--blue); color: #fff; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .22s; letter-spacing: .01em; margin-bottom: 8px; box-shadow: 0 4px 16px rgba(27,111,216,.25); }
.qe-book-btn:hover { background: var(--blue-bright, #2484F0); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,111,216,.35); }
.qe-cb-btn { width: 100%; padding: 11px; font-size: .82rem; font-weight: 500; border-radius: 8px; background: transparent; color: #B0BBCC; border: 1.5px solid #E4EAF3; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s; margin-bottom: 14px; }
.qe-cb-btn:hover { border-color: #0A0F1E; color: #0A0F1E; }
.qe-disclaimer { font-size: .72rem; color: #C8D0DC; line-height: 1.5; text-align: center; }
.qe-lead-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; color: #0A0F1E; margin-bottom: 4px; }
.qe-lead-sub { font-size: .82rem; color: #B0BBCC; margin-bottom: 18px; }
.qe-input { width: 100%; background: #F6F8FC; border: 1.5px solid #E4EAF3; border-radius: 8px; padding: 13px 14px; margin-bottom: 10px; color: #0A0F1E; font-family: 'DM Sans', sans-serif; font-size: .9rem; outline: none; transition: all .2s; }
.qe-input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(27,111,216,.1); }
.qe-input::placeholder { color: #C8D0DC; }
.qe-continue-btn { width: 100%; padding: 14px; font-size: .9rem; font-weight: 700; border-radius: 8px; background: #0A0F1E; color: #fff; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .22s; }
.qe-continue-btn:hover { background: var(--blue); transform: translateY(-1px); }
.qe-access-q { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; color: #0A0F1E; margin-bottom: 7px; }
.qe-access-desc { font-size: .82rem; color: #5A6A7E; line-height: 1.7; margin-bottom: 18px; }
.qe-check { width: 48px; height: 48px; border-radius: 50%; background: rgba(16,185,129,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.qe-check svg { width: 22px; height: 22px; stroke: #059669; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.qe-confirm-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.45rem; color: #0A0F1E; margin-bottom: 6px; }
.qe-confirm-price { font-size: .875rem; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.qe-confirm-text { font-size: .85rem; color: #5A6A7E; line-height: 1.75; margin-bottom: 22px; }
.qe-reset-btn { background: none; border: 1.5px solid #E4EAF3; border-radius: 8px; padding: 10px; width: 100%; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .8rem; color: #B0BBCC; transition: all .2s; }
.qe-reset-btn:hover { border-color: #0A0F1E; color: #0A0F1E; }

/* Quote engine card wrapper on suburb pages — matches homepage .q-form */
.qe-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 32px 80px rgba(0,0,0,.35); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(191,199,209,0.08);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { height: 180px; width: auto; margin-bottom: 16px; display: block; margin-left: -14px; }
.footer-brand p { color: var(--silver); font-size: 0.875rem; line-height: 1.65; margin-bottom: 16px; }
.footer-abn { font-size: 0.8rem; color: rgba(191,199,209,0.5); }
.footer-col h4 { color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--silver); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(191,199,209,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(191,199,209,0.5); font-size: 0.8rem; }

/* ── FLOATING CALL BUTTON ── */
.float-call {
  display: none;
  position: fixed; bottom: 24px; right: 24px;
  z-index: 90;
  background: var(--blue); color: #fff;
  border-radius: 100px; padding: 14px 22px;
  font-weight: 600; font-size: 0.95rem;
  align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(27,111,216,0.4);
  text-decoration: none;
  transition: background 0.2s;
}
.float-call svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.float-call:hover { background: var(--blue-bright); }

/* ── SUBURB PAGE HERO (split layout) ── */
.suburb-hero-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 560px;
  padding-top: 68px;
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.shs-left {
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 72px 56px 72px 56px;
  position: relative;
  z-index: 2;
}
.shs-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.shs-left::after {
  content: '';
  position: absolute;
  right: -28px; top: 0; bottom: 0;
  width: 56px;
  background: var(--dark);
  clip-path: polygon(0 0, 28px 0, 100% 100%, 0 100%);
  z-index: 1;
}
.shs-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.shs-right {
  position: relative;
  overflow: hidden;
}
.shs-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.shs-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,17,23,.35) 0%, transparent 40%);
  pointer-events: none;
}

/* keep old class working for any legacy references */
.suburb-hero {
  background: var(--dark);
  background-size: cover;
  background-position: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.suburb-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,17,23,0.65) 0%, rgba(13,17,23,0.5) 100%);
  z-index: 0;
}
.suburb-hero-content { position: relative; z-index: 1; }
.suburb-breadcrumb { color: var(--silver); font-size: 0.85rem; margin-bottom: 20px; }
.suburb-breadcrumb a { color: var(--silver); }
.suburb-breadcrumb a:hover { color: #fff; }
.suburb-breadcrumb span { margin: 0 8px; opacity: 0.4; }
.suburb-hero h1, .shs-inner h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); color: #fff; margin-bottom: 20px; }
.suburb-hero h1 span, .shs-inner h1 span { color: var(--blue-bright); }
.suburb-hero p, .shs-inner p { color: var(--silver); font-size: 1.05rem; font-weight: 300; max-width: 560px; line-height: 1.7; margin-bottom: 36px; }
.suburb-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown-toggle svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6,12,31,.98);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 8px;
  padding-top: 16px;
  list-style: none;
  min-width: 170px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  backdrop-filter: blur(20px);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-dropdown-menu li a {
  display: block;
  padding: 9px 16px;
  color: rgba(255,255,255,.8) !important;
  font-size: .85rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-radius: 6px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover { background: rgba(27,111,216,.18); color: #fff !important; }

/* ── QUOTE ENGINE EXTRAS ── */
.qe-step1-badge { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.qe-step1-icon { width: 40px; height: 40px; background: rgba(27,111,216,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qe-step1-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.qe-area-hint { font-size: .72rem; color: #B0BBCC; text-align: center; margin-top: 10px; letter-spacing: .01em; }
.qe-rear-section { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(191,199,209,.25); }
.qe-opt.qe-opt-selected { border-color: var(--blue) !important; background: rgba(27,111,216,.08) !important; color: var(--blue) !important; opacity: .85; }
/* Remove excess min-height on suburb page quote cards */
.qe-card .qe-wrap { min-height: 0; }

/* ── SUBURB CONTENT ── */
.suburb-content { padding: 80px 0; }
.suburb-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.suburb-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--body-text); margin-bottom: 20px; }
.suburb-text p { color: var(--light-text); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }

.suburb-map {
  background: var(--card-bg);
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--silver);
  aspect-ratio: 4/3;
}
.suburb-map iframe { width: 100%; height: 100%; border: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-phone, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .suburb-content-grid { grid-template-columns: 1fr; }
  .suburb-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .shs-right { height: 260px; order: -1; }
  .shs-right::after { background: linear-gradient(to bottom, rgba(13,17,23,.3) 0%, transparent 60%); }
  .shs-left { padding: 48px 24px 56px; }
  .shs-left::after { display: none; }
}

@media (max-width: 600px) {
  .trust-bar-inner { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .float-call { display: flex; }
  .pricing-card.featured { transform: none; }
}
