/* ==========================================
       FYS CLEANING — STYLES
       Brand colors:
         --primary  #1B8AC4   (bright cerulean — buttons, accents, highlights)
         --navy     #14365C   (deep navy — headlines, body text)
         --bg-soft  #F4F8FB   (pale blue tint — alternating sections)
       Edit these in :root below to update site-wide.
       ========================================== */

    :root {
      --primary: #1B8AC4;
      --primary-dark: #136699;
      --primary-darker: #0E5078;
      --navy: #14365C;
      --navy-light: #3A5A85;
      --text: #1A2330;
      --text-muted: #5A6B82;
      --bg: #FFFFFF;
      --bg-soft: #F4F8FB;
      --border: #E5ECF2;
      --success: #0F6E56;
      --shadow: 0 4px 24px rgba(20, 54, 92, 0.08);
      --shadow-hover: 0 8px 32px rgba(20, 54, 92, 0.14);
      --shadow-xl: 0 12px 40px rgba(20, 54, 92, 0.22);
      --radius: 12px;
      --radius-lg: 20px;
      --max-width: 1140px;
    }

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

    /* Brand-consistent keyboard focus ring (replaces inconsistent browser default, never removed without replacement) */
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
      outline: 2px solid var(--primary-dark);
      outline-offset: 2px;
      border-radius: 4px;
    }

    /* Skip link: off-screen until keyboard focus lands on it, then jumps above the header */
    .skip-link {
      position: absolute;
      top: -48px;
      left: 16px;
      background: var(--primary-dark);
      color: white;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      z-index: 200;
      transition: top 0.15s ease;
    }
    .skip-link:focus {
      top: 16px;
    }

    /* Tactile press feedback for simple controls (cards' press feedback lives near the scroll-reveal rules further down, to win the specificity tie against .fade-in-visible) */
    .btn:active, .qc-pill:active, .qc-extra:active, .nav-link:active, nav a.cta:active {
      transform: scale(0.96);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
    }

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

    /* ============= HEADER ============= */
    header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      z-index: 100;
      transition: box-shadow 0.25s ease;
    }
    /* Compact, slightly elevated header once the page has scrolled past the hero (JS toggles .header-scrolled) */
    header.header-scrolled {
      box-shadow: 0 2px 16px rgba(20, 54, 92, 0.08);
    }
    header.header-scrolled .header-inner { padding: 10px 24px; }
    header.header-scrolled .logo img { height: 36px; }
    .header-inner, .logo img {
      transition: padding 0.2s ease, height 0.2s ease;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      max-width: var(--max-width);
      margin: 0 auto;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--navy);
      font-weight: 800;
      font-size: 18px;
      letter-spacing: -0.01em;
    }
    .logo img {
      height: 44px;
      width: auto;
      display: block;
    }
    .logo-text {
      display: inline;
      font-weight: 800;
      font-size: 16px;
      color: var(--navy);
      letter-spacing: -0.01em;
      line-height: 1;
      white-space: nowrap;
    }
    .logo-text .accent { color: var(--primary); font-style: italic; font-weight: 500; }
    .logo-text-extra { display: inline; }
    @media (max-width: 600px) {
      .logo img { height: 36px; }
      .logo-text { font-size: 13px; }
    }
    @media (max-width: 480px) {
      .logo-text-extra { display: none; } /* Drop "Services" word on phones, keep "FyS Cleaning" */
    }
    @media (max-width: 360px) {
      .logo-text { font-size: 12px; }
    }
    nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
      font-size: 15px;
      margin-left: 28px;
      transition: color 0.15s;
    }
    nav a:hover { color: var(--primary-dark); }
    nav a.nav-active { color: var(--primary-dark); font-weight: 700; }
    nav a.cta {
      background: var(--primary-dark);
      color: white;
      padding: 8px 20px;
      border-radius: 8px;
      font-weight: 600;
      transition: background 0.15s, transform 0.1s;
    }
    nav a.cta:hover { background: var(--primary-darker); color: white; transform: translateY(-1px); }
    @media (max-width: 720px) {
      nav .nav-link { display: none; }
      nav a { margin-left: 12px; }
    }

    /* ============= HERO ============= */
    .hero {
      padding: 96px 24px 110px;
      text-align: center;
      position: relative;
      overflow: hidden;
      color: white;
    }
    /* Gradient overlay sits above the photo slides, below the text/buttons */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(20, 54, 92, 0.78) 0%, rgba(20, 54, 92, 0.62) 45%, rgba(20, 54, 92, 0.85) 100%);
      z-index: 1;
    }
    .hero > * { position: relative; z-index: 2; }

    /* Photo slideshow — stacked full-bleed layers cross-fading behind the gradient/text */
    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1.4s ease;
    }
    .hero-slide.active {
      opacity: 1;
      animation: heroZoom 7s ease-in-out forwards;
    }
    @keyframes heroZoom {
      from { transform: scale(1); }
      to { transform: scale(1.08); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-slide.active { animation: none; }
      .hero-slide { transition: opacity 0.4s ease; }
    }

    /* Slide indicator dots */
    .hero-dots {
      position: absolute;
      z-index: 2;
      bottom: 56px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.6);
      background: rgba(255, 255, 255, 0.25);
      padding: 0;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .hero-dot.active {
      background: white;
      transform: scale(1.25);
    }
    .hero-dot:hover { background: rgba(255, 255, 255, 0.7); }
    .hero-eyebrow {
      display: inline-block;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(4px);
      color: white;
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      margin-bottom: 24px;
      border: 1px solid rgba(255, 255, 255, 0.25);
    }
    .hero h1 {
      font-size: clamp(34px, 5.5vw, 56px);
      font-weight: 800;
      color: white;
      letter-spacing: -0.025em;
      line-height: 1.1;
      max-width: 820px;
      margin: 0 auto 24px;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    }
    .hero h1 .accent { color: #7FD4EE; }
    .hero p.lead {
      font-size: clamp(17px, 2vw, 20px);
      color: rgba(255, 255, 255, 0.88);
      max-width: 640px;
      margin: 0 auto 40px;
    }
    .hero .btn-outline {
      background: rgba(255, 255, 255, 0.95);
    }
    .cta-row {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 28px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
      border: none;
      cursor: pointer;
    }
    .btn-primary {
      /* primary-dark used instead of primary: white text on #1B8AC4 is only 3.83:1 (fails WCAG AA for normal-size text); primary-dark is 6.2:1 */
      background: var(--primary-dark);
      color: white;
      box-shadow: 0 4px 14px rgba(27, 138, 196, 0.35);
    }
    .btn-primary:hover {
      background: var(--primary-darker);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(27, 138, 196, 0.45);
    }
    .btn-outline {
      background: white;
      color: var(--navy);
      border: 1.5px solid var(--border);
    }
    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary-dark);
    }
    .hero-trust {
      margin-top: 56px;
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.85);
    }
    .hero-trust span { display: flex; align-items: center; gap: 6px; }
    .check { color: #7FD4EE; font-weight: 700; }

    .scroll-cue {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      color: rgba(255, 255, 255, 0.75);
      font-size: 12px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      z-index: 1;
      animation: scrollCueBounce 2s ease-in-out infinite;
    }
    .scroll-cue svg { width: 18px; height: 18px; }
    @keyframes scrollCueBounce {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, 6px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .scroll-cue { animation: none; }
    }
    @media (max-width: 600px) {
      .scroll-cue { display: none; }
    }

    /* ============= SECTIONS GENERIC ============= */
    section.block {
      padding: 88px 0;
    }
    section.block.alt { background: var(--bg-soft); }
    .section-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }
    .section-head .eyebrow {
      display: inline-block;
      color: var(--primary-dark); /* was var(--primary) — 3.83:1 fails WCAG AA, primary-dark is 6.2:1 */
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-head h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-head p {
      font-size: 18px;
      color: var(--text-muted);
    }

    /* ============= TRUST STATS BAR ============= */
    .stats-bar {
      background: var(--navy);
      padding: 40px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }
    @media (max-width: 760px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    }
    .stat-number {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: white;
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .stat-label {
      margin-top: 8px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.02em;
    }

    /* ============= WHY US (3 PILLARS) ============= */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    @media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } }
    .pillar {
      background: white;
      padding: 36px 32px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    /* :hover lift lives further down, after .fade-in-visible, so it isn't overridden by the reveal transform once the card has animated in */
    .pillar-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: rgba(27, 138, 196, 0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }
    .pillar-icon svg { width: 28px; height: 28px; }
    .pillar h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .pillar p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
    }

    /* ============= SERVICES (3-column grid for 5 service cards) ============= */
    .grid-services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      align-items: stretch;
    }
    @media (max-width: 1000px) {
      .grid-services { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .grid-services { grid-template-columns: 1fr; }
    }
    .service-note {
      font-size: 13px !important;
      color: var(--text-muted) !important;
      background: var(--bg-soft);
      padding: 10px 12px;
      border-radius: 8px;
      border-left: 3px solid var(--primary);
      margin-bottom: 14px !important;
      line-height: 1.5 !important;
    }
    .service-note strong { color: var(--navy); }

    /* Pricing detail (rate / minimum / GST line) */
    .price-detail {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: -8px;
      margin-bottom: 16px;
    }
    .price-detail .gst { color: var(--primary-dark); font-weight: 600; }

    /* Section-wide GST note */
    .gst-banner {
      max-width: 480px;
      margin: -32px auto 36px;
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
      font-style: italic;
    }
    .gst-banner strong { color: var(--navy); font-style: normal; }

    /* Eco badge on service cards */
    .eco-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(15, 110, 86, 0.08);
      color: var(--success);
      font-size: 12px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 100px;
      margin-bottom: 12px;
      letter-spacing: 0.02em;
    }
    .eco-badge::before {
      content: "🌿";
      font-size: 12px;
    }

    /* Airbnb tier table inside service card */
    .airbnb-tiers {
      width: 100%;
      border-collapse: collapse;
      margin: 4px 0 14px;
      font-size: 13px;
    }
    .airbnb-tiers th, .airbnb-tiers td {
      padding: 8px 10px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }
    .airbnb-tiers th {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: var(--bg-soft);
    }
    .airbnb-tiers td:first-child { font-weight: 600; color: var(--navy); }
    .airbnb-tiers td.price { font-weight: 600; color: var(--text); white-space: nowrap; }
    .airbnb-tiers tr:last-child td { border-bottom: none; }
    .linen-addon {
      background: var(--bg-soft);
      border-left: 3px solid var(--primary);
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 12px;
      color: var(--text);
      margin-bottom: 14px;
    }
    .linen-addon strong { color: var(--navy); }

    /* ============= ADD-ONS & SPECIALTY ============= */
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    @media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }

    /* ============= OUR WORK — HORIZONTAL PHOTO MARQUEE ============= */
    .work-marquee-wrap {
      width: 100%;
      overflow: hidden;
      margin-top: 16px;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    }
    .work-marquee {
      width: 100%;
      overflow: hidden;
    }
    .work-track {
      display: flex;
      gap: 16px;
      width: max-content;
      animation: workMarqueeScroll 58s linear infinite;
    }
    .work-marquee:hover .work-track,
    .work-marquee:focus-within .work-track {
      animation-play-state: paused;
    }
    .work-track img {
      height: 220px;
      width: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      object-fit: cover;
      flex-shrink: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .work-track img:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: var(--shadow-hover);
    }
    @keyframes workMarqueeScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @media (max-width: 600px) {
      .work-track img { height: 160px; }
    }
    /* Reduced motion: stop the auto-scroll, let people swipe/scroll the row manually instead */
    @media (prefers-reduced-motion: reduce) {
      .work-track { animation: none; }
      .work-marquee { overflow-x: auto; }
    }

    .addon-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
    }
    .addon-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 14px;
    }
    .addon-card p {
      color: var(--text-muted);
      margin-bottom: 14px;
      line-height: 1.65;
    }
    .addon-list {
      list-style: none;
      padding: 0;
      margin: 0 0 18px 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .addon-list li {
      padding: 10px 14px;
      background: var(--bg-soft);
      border-radius: 8px;
      font-weight: 600;
      color: var(--navy);
      font-size: 14px;
    }
    .addon-list li::before {
      content: "✓ ";
      color: var(--primary-dark);
      margin-right: 4px;
    }
    .addon-note {
      font-size: 13px !important;
      color: var(--text-muted) !important;
      font-style: italic;
      margin-top: 16px !important;
      margin-bottom: 0 !important;
    }
    .addon-note strong { color: var(--navy); }

    /* ============= SERVICES ============= */
    .service {
      background: white;
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
    }
    .service.featured {
      border: 2px solid var(--primary);
      box-shadow: var(--shadow);
    }
    .service.featured::before {
      content: "Our specialty";
      position: absolute;
      top: -12px;
      left: 32px;
      background: var(--primary-dark);
      color: white;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    /* :hover lift lives further down, after .fade-in-visible, so it isn't overridden by the reveal transform once the card has animated in */
    .service-icon {
      width: 48px;
      height: 48px;
      background: var(--bg-soft);
      border-radius: 12px;
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .service-icon svg { width: 26px; height: 26px; }
    .service h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .service p { color: var(--text-muted); margin-bottom: 18px; flex-grow: 1; line-height: 1.65; }
    .service .price {
      color: var(--navy);
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 18px;
    }
    .service .price .from { color: var(--text-muted); font-weight: 500; font-size: 14px; }
    .service .btn { width: 100%; justify-content: center; }

    /* ============= SUBURBS — animated chip cloud with jump-to-area filters ============= */
    .suburb-filters {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 44px;
    }
    .suburb-filter {
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary-dark);
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 10px 20px;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }
    .suburb-filter:hover { border-color: var(--primary); transform: translateY(-2px); }
    .suburb-filter.active {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: white;
      box-shadow: 0 6px 16px rgba(27, 138, 196, 0.35);
    }

    .suburb-region {
      margin-bottom: 40px;
      border-radius: var(--radius-lg);
      transition: box-shadow 0.6s ease, background 0.6s ease;
    }
    .suburb-region:last-of-type { margin-bottom: 0; }
    .suburb-region h3 {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--primary-dark);
      margin-bottom: 18px;
    }
    .suburb-region-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 rgba(27, 138, 196, 0.5);
      animation: suburbDotPulse 2.4s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes suburbDotPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(27, 138, 196, 0.45); }
      50% { box-shadow: 0 0 0 6px rgba(27, 138, 196, 0); }
    }
    .suburb-region.highlight-pulse {
      box-shadow: 0 0 0 3px var(--primary) inset;
      background: rgba(31, 143, 196, 0.06);
    }

    .suburb-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .suburb-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: white;
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 9px 16px 9px 12px;
      font-size: 14.5px;
      font-weight: 500;
      text-decoration: none;
      opacity: 0;
      transform: translateY(10px) scale(0.96);
      animation: suburbChipIn 0.5s ease forwards;
      animation-play-state: paused;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .suburb-chip svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; transition: color 0.2s ease; }
    .suburb-region.fade-in-visible .suburb-chip { animation-play-state: running; }
    .suburb-chip:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }
    .suburb-chip:hover svg { color: white; }
    .suburb-chip-static { cursor: default; color: var(--text-muted); }
    .suburb-chip-static:hover {
      background: white;
      border-color: var(--border);
      color: var(--text-muted);
      transform: none;
      box-shadow: none;
    }
    .suburb-chip-static:hover svg { color: var(--primary); }
    @keyframes suburbChipIn {
      from { opacity: 0; transform: translateY(10px) scale(0.96); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    /* Stagger the pop-in per chip so the cloud cascades rather than appearing all at once */
    .suburb-chips .suburb-chip:nth-child(1) { animation-delay: 0s; }
    .suburb-chips .suburb-chip:nth-child(2) { animation-delay: 0.03s; }
    .suburb-chips .suburb-chip:nth-child(3) { animation-delay: 0.06s; }
    .suburb-chips .suburb-chip:nth-child(4) { animation-delay: 0.09s; }
    .suburb-chips .suburb-chip:nth-child(5) { animation-delay: 0.12s; }
    .suburb-chips .suburb-chip:nth-child(6) { animation-delay: 0.15s; }
    .suburb-chips .suburb-chip:nth-child(7) { animation-delay: 0.18s; }
    .suburb-chips .suburb-chip:nth-child(8) { animation-delay: 0.21s; }
    .suburb-chips .suburb-chip:nth-child(9) { animation-delay: 0.24s; }
    .suburb-chips .suburb-chip:nth-child(10) { animation-delay: 0.27s; }
    .suburb-chips .suburb-chip:nth-child(n+11) { animation-delay: 0.3s; }
    @media (prefers-reduced-motion: reduce) {
      .suburb-chip { animation: none !important; opacity: 1; transform: none; }
      .suburb-region-dot { animation: none; }
    }

    .suburbs-cta {
      text-align: center;
      margin-top: 48px;
      color: var(--text-muted);
    }
    .suburbs-cta a { color: var(--primary-dark); font-weight: 600; text-decoration: none; }
    .suburbs-cta a:hover { text-decoration: underline; }

    /* ============= REVIEWS — three columns of cards drifting upward at different speeds ============= */
    .reviews-marquee {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      height: 620px;
      -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 90%, transparent 100%);
      mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 90%, transparent 100%);
    }
    .reviews-col {
      overflow: hidden;
      position: relative;
    }
    .reviews-col-track {
      display: flex;
      flex-direction: column;
      gap: 24px;
      animation: reviewsScrollUp 34s linear infinite;
    }
    /* Each column runs at its own speed and starting offset for a natural, uncoordinated drift */
    .reviews-col:nth-child(1) .reviews-col-track { animation-duration: 30s; }
    .reviews-col:nth-child(2) .reviews-col-track { animation-duration: 38s; animation-delay: -9s; }
    .reviews-col:nth-child(3) .reviews-col-track { animation-duration: 25s; animation-delay: -4s; }
    .reviews-col:hover .reviews-col-track,
    .reviews-col:focus-within .reviews-col-track {
      animation-play-state: paused;
    }
    @keyframes reviewsScrollUp {
      from { transform: translateY(0); }
      to { transform: translateY(-50%); }
    }
    @media (max-width: 900px) {
      .reviews-marquee { grid-template-columns: repeat(2, 1fr); height: 560px; }
      .reviews-col:nth-child(3) { display: none; }
    }
    @media (max-width: 620px) {
      .reviews-marquee {
        display: block;
        height: auto;
        -webkit-mask-image: none;
        mask-image: none;
      }
      .reviews-col:nth-child(2), .reviews-col:nth-child(3) { display: none; }
      .reviews-col-track {
        animation: none !important;
        gap: 20px;
      }
      .reviews-col-track .review[aria-hidden="true"] { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      .reviews-marquee { height: auto; -webkit-mask-image: none; mask-image: none; }
      .reviews-col-track { animation: none !important; }
      .reviews-col-track .review[aria-hidden="true"] { display: none; }
    }
    .review {
      background: white;
      padding: 28px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }
    .review-stars { color: #F5B100; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
    .review-quote {
      font-size: 16px;
      color: var(--text);
      line-height: 1.65;
      margin-bottom: 16px;
      font-style: italic;
    }
    .review-author {
      font-size: 14px;
      color: var(--navy);
      font-weight: 600;
    }
    .review-author span { color: var(--text-muted); font-weight: 400; }
    .reviews-link {
      text-align: center;
      margin-top: 36px;
    }
    .reviews-link a {
      color: var(--primary-dark);
      font-weight: 600;
      text-decoration: none;
      font-size: 15px;
    }
    .reviews-link a:hover { text-decoration: underline; }

    /* ============= FAQ — accordion ============= */
    .faq-list {
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: none;
      border: none;
      font-family: inherit;
      text-align: left;
      padding: 20px 22px;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
    }
    .faq-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--primary-dark);
      transition: transform 0.3s ease;
    }
    .faq-item.open .faq-icon { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .faq-item.open .faq-answer { max-height: 240px; }
    .faq-answer p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.65;
      padding: 0 22px 20px;
    }
    .faq-answer a { color: var(--primary-dark); font-weight: 600; text-decoration: none; }
    .faq-answer a:hover { text-decoration: underline; }
    @media (prefers-reduced-motion: reduce) {
      .faq-answer, .faq-icon { transition: none; }
    }

    /* ============= QUOTE FORM ============= */
    .quote-section {
      padding: 88px 0;
      background: linear-gradient(135deg, var(--navy) 0%, #0E2849 100%);
      color: white;
    }
    .quote-section .section-head h2 { color: white; }
    .quote-section .section-head p { color: rgba(255, 255, 255, 0.8); }
    .quote-section .section-head .eyebrow { color: #7FD4EE; } /* var(--primary) on dark navy only hits 3.2:1; this accent (already used in .hero h1) hits 7.3:1 */

    .quote-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 40px;
      max-width: 640px;
      margin: 0 auto;
      box-shadow: var(--shadow-xl);
    }
    @media (max-width: 600px) { .quote-card { padding: 28px 22px; } }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 16px; /* was 15px — below 16px triggers iOS Safari auto-zoom on focus */
      font-family: inherit;
      color: var(--text);
      background: white;
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(27, 138, 196, 0.15);
    }
    .form-group textarea { min-height: 90px; resize: vertical; }

    .checkbox-group {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 4px;
    }
    @media (max-width: 480px) { .checkbox-group { grid-template-columns: 1fr; } }
    .checkbox-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      background: var(--bg-soft);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--navy);
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
    }
    .checkbox-item:hover { border-color: var(--primary); }
    .checkbox-item input[type="checkbox"] {
      width: 18px;
      height: 18px;
      accent-color: var(--primary);
      cursor: pointer;
      margin: 0;
    }
    .checkbox-item:has(input:checked) {
      background: rgba(27, 138, 196, 0.08);
      border-color: var(--primary);
    }
    .form-disclaimer {
      font-size: 13px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 16px;
    }
    .form-disclaimer a { color: var(--primary); }

    /* ============= FOOTER ============= */
    footer {
      background: #0B1F38;
      color: rgba(255, 255, 255, 0.75);
      padding: 56px 0 32px;
      font-size: 14px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    @media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
    .footer-brand {
      font-size: 18px;
      font-weight: 800;
      color: white;
      margin-bottom: 12px;
    }
    .footer-tagline {
      margin-bottom: 16px;
      line-height: 1.7;
    }
    .footer-contact a {
      color: white;
      text-decoration: none;
      display: block;
      margin-bottom: 6px;
    }
    .footer-contact a:hover { color: var(--primary); }
    .footer-col h4 {
      color: white;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 14px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .footer-col a {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.15s;
    }
    .footer-col a:hover { color: var(--primary); }
    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 4px;
    }
    .footer-socials a {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: background 0.15s, transform 0.1s;
      margin-bottom: 0;
    }
    .footer-socials a:hover { background: var(--primary); transform: translateY(-2px); }
    .footer-socials svg { width: 18px; height: 18px; }
    .footer-bottom {
      margin-top: 24px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
    }
    .footer-bottom .abn { color: rgba(255, 255, 255, 0.5); }

    /* ============= MOBILE STICKY CTA (handy for thumb-reach) ============= */
    .sticky-mobile-cta {
      display: none;
      position: fixed;
      bottom: 16px;
      left: 16px;
      right: 16px;
      background: var(--primary-dark);
      color: white;
      padding: 16px;
      border-radius: 12px;
      text-align: center;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 8px 32px rgba(27, 138, 196, 0.4); /* intentionally primary-tinted, not navy — draws extra attention to the floating CTA */
      z-index: 50;
    }
    @media (max-width: 600px) { .sticky-mobile-cta { display: block; } }

    /* ============= WHATSAPP CHAT BUTTON ============= */
    .whatsapp-button {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      z-index: 51;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .whatsapp-button svg { width: 30px; height: 30px; color: white; }
    .whatsapp-button:hover {
      transform: scale(1.08);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
    }
    /* Sits above the full-width sticky quote bar on mobile instead of overlapping it */
    @media (max-width: 600px) {
      .whatsapp-button { bottom: 88px; right: 16px; width: 52px; height: 52px; }
      .whatsapp-button svg { width: 26px; height: 26px; }
    }

    /* ============= SCROLL-TRIGGERED REVEAL ============= */
    /* Cards start hidden and fade/rise into place as they scroll into view (JS toggles .fade-in-visible via IntersectionObserver). Staggered per card so things appear one by one, not all at once. */
    .pillar, .service, .review, .card, .addon-card, .price-card, .suburb-region {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.2s, transform 0.2s;
    }
    .pillar.fade-in-visible, .service.fade-in-visible, .review.fade-in-visible,
    .card.fade-in-visible, .addon-card.fade-in-visible, .price-card.fade-in-visible,
    .suburb-region.fade-in-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .grid-3 .pillar:nth-child(1), .grid-services .service:nth-child(1), .reviews-col-track .review:nth-child(1), .suburb-region:nth-of-type(1) { transition-delay: 0s; }
    .grid-3 .pillar:nth-child(2), .grid-services .service:nth-child(2), .reviews-col-track .review:nth-child(2), .suburb-region:nth-of-type(2) { transition-delay: 0.1s; }
    .grid-3 .pillar:nth-child(3), .grid-services .service:nth-child(3), .suburb-region:nth-of-type(3) { transition-delay: 0.2s; }
    .grid-services .service:nth-child(4) { transition-delay: 0.3s; }
    .grid-services .service:nth-child(5) { transition-delay: 0.4s; }

    /* Card hover lift + press feedback. Placed after .fade-in-visible so it isn't overridden once a card has scrolled into view. */
    .review {
      transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease;
    }
    .pillar:hover, .service:hover, .review:hover, .card:hover, .addon-card:hover, .price-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }
    .pillar:active, .service:active, .review:active, .card:active, .addon-card:active, .price-card:active {
      transform: translateY(-2px) scale(0.985);
      transition-duration: 0.1s;
    }

    @media (prefers-reduced-motion: reduce) {
      .pillar, .service, .review, .card, .addon-card, .price-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

    /* ============= SCROLL FADE-IN (JS-triggered via IntersectionObserver) ============= */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in-visible {
      opacity: 1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
      .fade-in { opacity: 1; transform: none; transition: none; }
    }

    /* ============= QUOTE CALCULATOR ============= */
    .quote-calc-hero {
      padding: 64px 24px 32px;
      text-align: center;
      background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
    }
    .quote-calc-hero h1 {
      font-size: clamp(30px, 4.5vw, 44px);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin: 0 auto 16px;
      max-width: 700px;
    }
    .quote-calc-hero .lead {
      font-size: clamp(16px, 2vw, 18px);
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto;
    }

    .quote-calc-section {
      padding: 24px 24px 88px;
    }
    .quote-calc-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: start;
    }
    @media (max-width: 880px) {
      .quote-calc-grid { grid-template-columns: 1fr; }
    }

    .quote-calc-card {
      background: white;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      padding: 36px 32px;
    }
    .quote-calc-card h2 {
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 24px;
    }
    .quote-calc-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin: 24px 0 14px;
    }
    .quote-calc-sticky {
      position: sticky;
      top: 96px;
    }
    @media (max-width: 880px) {
      .quote-calc-sticky { position: static; }
    }

    .qc-label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
      margin-top: 20px;
    }
    .qc-label:first-of-type { margin-top: 0; }

    .qc-select-wrap { position: relative; }
    .qc-select {
      width: 100%;
      padding: 14px 40px 14px 16px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 16px; /* was 15px — below 16px triggers iOS Safari auto-zoom on focus */
      font-family: inherit;
      color: var(--text);
      background: white;
      appearance: none;
      cursor: pointer;
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .qc-select-wrap::after {
      content: "";
      position: absolute;
      right: 16px;
      top: 50%;
      width: 8px;
      height: 8px;
      border-right: 2px solid var(--text-muted);
      border-bottom: 2px solid var(--text-muted);
      transform: translateY(-70%) rotate(45deg);
      pointer-events: none;
    }
    .qc-select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(27, 138, 196, 0.15);
    }

    .qc-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (max-width: 480px) { .qc-row { grid-template-columns: 1fr; } }

    .qc-pill-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .qc-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 18px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      background: white;
      color: var(--text);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .qc-pill:hover { border-color: var(--primary); }
    .qc-pill.active {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
      color: white;
    }
    .qc-pill-badge {
      background: rgba(255, 255, 255, 0.25);
      color: inherit;
      font-size: 12px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 100px;
    }
    .qc-pill:not(.active) .qc-pill-badge {
      background: rgba(15, 110, 86, 0.1);
      color: var(--success);
    }

    .qc-toggle-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 24px;
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
    }
    /* Visual track stays small (26px) but the clickable hit area is padded to the 44px touch-target minimum */
    .qc-switch { display: inline-flex; align-items: center; min-height: 44px; padding: 9px 4px; cursor: pointer; }
    .qc-switch input { display: none; }
    .qc-switch-track {
      display: block;
      width: 44px;
      height: 26px;
      background: var(--border);
      border-radius: 100px;
      position: relative;
      transition: background 0.2s ease;
    }
    .qc-switch-thumb {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      background: white;
      border-radius: 50%;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
      transition: transform 0.2s ease;
    }
    .qc-switch input:checked + .qc-switch-track { background: var(--primary); }
    .qc-switch input:checked + .qc-switch-track .qc-switch-thumb { transform: translateX(18px); }

    .qc-extras-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .qc-extra {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--navy);
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
    }
    .qc-extra:hover { border-color: var(--primary); }
    .qc-extra input { display: none; }
    .qc-radio {
      width: 18px;
      height: 18px;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      flex-shrink: 0;
      position: relative;
      transition: border-color 0.15s;
    }
    .qc-extra input:checked ~ .qc-radio {
      border-color: var(--primary);
      background: var(--primary);
    }
    .qc-extra input:checked ~ .qc-radio::after {
      content: "";
      position: absolute;
      top: 4px;
      left: 4px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
    }
    .qc-extra:has(input:checked) { border-color: var(--primary); background: rgba(27, 138, 196, 0.05); }
    .qc-extra-price {
      margin-left: auto;
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 600;
    }

    .qc-note {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 12px;
      line-height: 1.5;
    }

    .qc-hidden { display: none !important; }

    .qc-price-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding-bottom: 6px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 8px;
    }
    .qc-price-row span:first-child {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 600;
    }
    .qc-total-price {
      font-size: 32px;
      font-weight: 800;
      color: var(--navy);
    }
    .qc-gst-note {
      font-size: 13px;
      color: var(--text-muted);
      font-style: italic;
      margin-bottom: 8px;
    }
    .qc-ongoing-note {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--primary-dark);
      background: rgba(27, 138, 196, 0.08);
      border-radius: 8px;
      padding: 8px 12px;
      margin-bottom: 10px;
    }

    .qc-submit {
      width: 100%;
      justify-content: center;
      padding: 16px;
      margin-top: 8px;
    }

    .qc-disclaimer {
      margin-top: 24px;
      padding: 16px 18px;
      background: var(--navy);
      color: rgba(255, 255, 255, 0.8);
      border-radius: 12px;
      font-size: 13px;
      line-height: 1.6;
    }
    .qc-success-banner {
      background: rgba(15, 110, 86, 0.08);
      border: 1.5px solid var(--success);
      color: var(--success);
      padding: 16px 18px;
      border-radius: 12px;
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 24px;
    }
    .qc-success-banner strong { display: block; margin-bottom: 2px; font-size: 16px; }
