    :root {
      --primary: #f5a700;
      --primary-dark: #d48f00;
      --secondary: #111111;
      --secondary-light: #222222;
      --text: #1a1a1a;
      --text-light: #555555;
      --light-bg: #f4f4f4;
      --border: #e2e8f0;
      --white: #ffffff;
    }

    * { box-sizing: border-box; }

    html { overflow-x: hidden; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      font-size: 17px;
      line-height: 1.75;
      margin: 0;
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; }

    h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; }

    a { text-decoration: none; color: inherit; }
    a:hover { color: var(--primary); }

    /* ── TOP BAR ── */
    .top-bar {
      background: var(--secondary);
      color: var(--white);
      font-size: 0.9rem;
      padding: 8px 0;
    }
    .top-bar a { color: rgba(255,255,255,.85); }
    .top-bar a:hover { color: var(--primary); }
    .top-bar i { margin-right: 5px; color: var(--primary); }

    /* ── NAVBAR ── */
    .site-nav {
      background: var(--white);
      box-shadow: 0 2px 12px rgba(0,0,0,.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand img { height: 50px; }
    .navbar-brand span {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--secondary);
      display: block;
      line-height: 1.1;
    }
    .navbar-brand span em { color: var(--primary); font-style: normal; }
    .navbar-brand small {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-top: 2px;
    }
    .nav-link {
      font-weight: 600;
      color: var(--secondary) !important;
      padding: 0.5rem 0.9rem !important;
      font-size: 0.9rem;
      transition: color .2s;
    }
    .nav-link:hover { color: var(--primary) !important; }
    .btn-quote {
      background: var(--primary);
      color: var(--secondary) !important;
      font-weight: 700;
      border-radius: 6px;
      padding: 10px 22px;
      font-size: 0.88rem;
      transition: background .2s;
    }
    .btn-quote:hover { background: var(--primary-dark); }
    .nav-phone {
      font-weight: 700;
      color: var(--secondary) !important;
      font-size: 0.95rem;
    }
    .nav-phone i { color: var(--primary); margin-right: 4px; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
      color: var(--white);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5a700' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(245,167,0,.2);
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      border: 1px solid rgba(245,167,0,.3);
      margin-bottom: 18px;
    }
    .hero h1 {
      font-size: clamp(2.3rem, 4.5vw, 3.5rem);
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .hero h1 span { color: var(--primary); }
    .hero .lead {
      font-size: 1.2rem;
      color: rgba(255,255,255,.85);
      max-width: 540px;
      margin-bottom: 32px;
    }
    .hero-features { list-style: none; padding: 0; margin: 0 0 36px; }
    .hero-features li {
      font-size: 1.05rem;
      color: rgba(255,255,255,.85);
      margin-bottom: 8px;
    }
    .hero-features li i { color: var(--primary); margin-right: 8px; }
    .btn-primary-cta {
      background: var(--primary);
      color: var(--secondary);
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .2s;
      border: none;
    }
    .btn-primary-cta:hover { background: var(--primary-dark); color: var(--secondary); transform: translateY(-2px); }
    .btn-outline-cta {
      background: transparent;
      color: var(--white);
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid rgba(255,255,255,.4);
      transition: all .2s;
    }
    .btn-outline-cta:hover { border-color: var(--primary); color: var(--primary); }
    .hero-card {
      background: var(--white);
      border-radius: 16px;
      padding: 36px 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,.25);
      position: relative;
    }
    .hero-card h3 { color: var(--secondary); font-size: 1.2rem; margin-bottom: 6px; }
    .hero-card .sub { color: var(--text-light); font-size: 0.85rem; margin-bottom: 24px; }
    .hero-stat {
      text-align: center;
      padding: 16px;
      background: var(--light-bg);
      border-radius: 10px;
    }
    .hero-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
    .hero-stat .label { font-size: 0.75rem; color: var(--text-light); font-weight: 600; margin-top: 4px; }
    .hero-card-phone {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--secondary);
      border-radius: 10px;
      padding: 14px 18px;
      margin-top: 20px;
    }
    .hero-card-phone .icon {
      width: 42px; height: 42px;
      background: var(--primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--secondary);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .hero-card-phone .info small { color: rgba(255,255,255,.65); font-size: 0.75rem; display: block; }
    .hero-card-phone .info strong { color: var(--white); font-size: 1.05rem; }

    /* ── SECTION COMMONS ── */
    section { padding: 80px 0; }
    .section-label {
      display: inline-block;
      background: rgba(245,167,0,.12);
      color: var(--primary-dark);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 14px;
    }
    .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--secondary); margin-bottom: 16px; }
    .section-desc { color: var(--text-light); max-width: 640px; margin: 0 auto 48px; font-size: 1.05rem; }

    /* ── SERVICES STRIP ── */
    .services-strip { background: var(--light-bg); padding: 60px 0; }
    .service-card {
      background: var(--white);
      border-radius: 12px;
      padding: 28px 24px;
      border: 1px solid var(--border);
      transition: all .3s;
      height: 100%;
    }
    .service-card:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,.1);
      transform: translateY(-4px);
      border-color: var(--primary);
    }
    .service-icon {
      width: 54px; height: 54px;
      background: rgba(245,167,0,.12);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      color: var(--primary-dark);
      margin-bottom: 16px;
    }
    .service-card h4 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 8px; }
    .service-card p { font-size: 1rem; color: var(--text-light); margin: 0; }

    /* ── SOLUTIONS SECTION ── */
    .solutions-section { background: var(--white); }
    .solution-list { list-style: none; padding: 0; margin: 0 0 28px; }
    .solution-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.92rem;
    }
    .solution-list li:last-child { border-bottom: none; }
    .solution-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

    /* ── WHY CHOOSE US ── */
    .why-section { background: var(--secondary); color: var(--white); }
    .why-section .section-title { color: var(--white); }
    .why-section .section-desc { color: rgba(255,255,255,.7); }
    .why-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px;
      padding: 28px 24px;
      transition: all .3s;
      height: 100%;
    }
    .why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
    .why-card .icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 14px;
    }
    .why-card h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
    .why-card p { color: rgba(255,255,255,.7); font-size: 1rem; margin: 0; }

    /* ── PROCESS SECTION ── */
    .process-section { background: var(--light-bg); }
    .process-step {
      background: var(--white);
      border-radius: 14px;
      padding: 32px 26px;
      border: 1px solid var(--border);
      position: relative;
      height: 100%;
    }
    .step-num {
      position: absolute;
      top: -18px; left: 26px;
      width: 36px; height: 36px;
      background: var(--primary);
      color: var(--secondary);
      font-weight: 800;
      font-size: 0.85rem;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .process-step h4 { color: var(--secondary); font-size: 1.1rem; margin-bottom: 10px; margin-top: 8px; }
    .process-step p { font-size: 1rem; color: var(--text-light); margin: 0; }

    /* ── SERVICES GRID ── */
    .service-grid-section { background: var(--white); }
    .srv-grid-card {
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: all .3s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .srv-grid-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,.1); transform: translateY(-4px); }
    .srv-grid-img {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    .srv-grid-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }
    .srv-grid-card:hover .srv-grid-img img {
      transform: scale(1.06);
    }
    .srv-grid-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
    .srv-grid-body h4 { font-size: 1.2rem; font-weight: 800; color: var(--secondary); margin-bottom: 6px; }
    .srv-grid-body p { font-size: 1rem; color: var(--text-light); flex: 1; }
    .srv-grid-body a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--primary-dark);
      margin-top: 12px;
    }
    .srv-grid-body a:hover { gap: 10px; }

    /* ── HOW TO FIND ── */
    .find-section { background: var(--light-bg); }
    .find-step {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }
    .find-step:last-child { border-bottom: none; }
    .find-num {
      width: 40px; height: 40px;
      background: var(--primary);
      color: var(--secondary);
      font-weight: 800;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 0.9rem;
    }
    .find-step h5 { font-size: 0.95rem; color: var(--secondary); margin-bottom: 4px; }
    .find-step p { font-size: 0.855rem; color: var(--text-light); margin: 0; }

    /* ── FAQ ── */
    .faq-section { background: var(--white); }
    .accordion-button {
      font-weight: 600;
      color: var(--secondary) !important;
      background: var(--white) !important;
      font-size: 1.05rem;
    }
    .accordion-button:not(.collapsed) { color: var(--primary-dark) !important; box-shadow: none !important; }
    .accordion-button::after { filter: none; }
    .accordion-button:focus { box-shadow: none !important; }
    .accordion-item { border: 1px solid var(--border) !important; margin-bottom: 8px; border-radius: 10px !important; overflow: hidden; }
    .accordion-body { font-size: 1rem; color: var(--text-light); }

    /* ── SERVICE AREA ── */
    .area-section { background: var(--secondary); color: var(--white); }
    .area-section .section-title { color: var(--white); }
    .area-section .section-desc { color: rgba(255,255,255,.7); }
    .alpha-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
    .alpha-group {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }
    .alpha-group button {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.1);
      color: var(--white);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.8rem;
      cursor: pointer;
      transition: background .2s, color .2s, border-color .2s;
      pointer-events: none;
    }
    .alpha-group:hover button, .alpha-group.active button { background: var(--primary); color: var(--secondary); border-color: var(--primary); }
    .alpha-arrows { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
    .alpha-arrows i { font-size: 0.42rem; color: rgba(255,255,255,.55); display: block; transition: color .2s, transform .2s; }
    .alpha-group:hover .alpha-arrows i { color: var(--primary); }
    .alpha-group.active .alpha-arrows i { color: var(--primary); transform: rotate(180deg); }
    #areaLists { margin-top: 28px; }
    .area-list { display: none; }
    .area-list.active { display: block; }
    .suburb-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
    .suburb-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px;
      padding: 14px 16px;
      min-width: 180px;
      max-width: 220px;
      flex: 1 1 180px;
    }
    .suburb-card h5 {
      color: var(--primary);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
      padding-bottom: 6px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .suburb-card ul { list-style: none; padding: 0; margin: 0; }
    .suburb-card ul li { margin-bottom: 3px; }
    .suburb-card ul li a { color: rgba(255,255,255,.75); font-size: 0.9rem; display: block; transition: color .2s; }
    .suburb-card ul li a:hover { color: var(--primary); }

    /* ── ABOUT ── */
    .about-section { background: var(--light-bg); }
    .about-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 10px 16px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 8px;
    }
    .about-badge i { color: var(--primary); }
    .about-guarantee {
      background: var(--secondary);
      color: var(--white);
      border-radius: 12px;
      padding: 24px;
      margin-top: 24px;
    }
    .about-guarantee h5 { color: var(--primary); font-size: 0.95rem; margin-bottom: 8px; }
    .about-guarantee p { font-size: 0.855rem; color: rgba(255,255,255,.8); margin: 0; }

    /* ── QUOTE FORM ── */
    .quote-section { background: var(--white); }
    .form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 4px 20px rgba(0,0,0,.06);
    }
    .form-control, .form-select {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 14px;
      font-size: 0.9rem;
      transition: border .2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(245,167,0,.15);
    }
    .form-label { font-weight: 600; font-size: 0.875rem; color: var(--secondary); margin-bottom: 6px; }
    .contact-info-card {
      background: var(--secondary);
      color: var(--white);
      border-radius: 16px;
      padding: 40px 32px;
      height: 100%;
    }
    .contact-info-card h3 { color: var(--white); margin-bottom: 28px; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 16px;
      margin-bottom: 24px;
    }
    .contact-item .icon {
      width: 46px; height: 46px;
      background: rgba(245,167,0,.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--primary);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-item .detail small { color: rgba(255,255,255,.6); font-size: 0.78rem; display: block; margin-bottom: 2px; }
    .contact-item .detail strong { color: var(--white); font-size: 0.95rem; }
    .contact-item .detail a { color: var(--primary); font-weight: 700; }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: var(--primary);
      padding: 60px 0;
    }
    .cta-banner h2 { color: var(--secondary); font-size: clamp(1.7rem, 3vw, 2.3rem); }
    .cta-banner p { color: rgba(26,35,64,.75); }
    .btn-dark-cta {
      background: var(--secondary);
      color: var(--white);
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .2s;
      border: none;
    }
    .btn-dark-cta:hover { background: #0d1526; color: var(--white); }

    /* ── FOOTER ── */
    .site-footer { background: var(--secondary); color: rgba(255,255,255,.75); }
    .site-footer .footer-top { padding: 60px 0 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
    .site-footer .footer-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
    .site-footer .footer-logo-text em { color: var(--primary); font-style: normal; }
    .site-footer p { font-size: 0.95rem; }
    .footer-heading { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { color: rgba(255,255,255,.7); font-size: 0.95rem; transition: color .2s; }
    .footer-links a:hover { color: var(--primary); }
    .footer-bottom {
      padding: 20px 0;
      font-size: 0.875rem;
      color: rgba(255,255,255,.5);
      text-align: center;
    }
    .footer-bottom a { color: rgba(255,255,255,.5); }
    .footer-bottom a:hover { color: var(--primary); }

    /* ── DROPDOWN ── */
    .dropdown-menu {
      border: 1px solid var(--border);
      border-radius: 10px;
      box-shadow: 0 8px 30px rgba(0,0,0,.12);
      padding: 8px;
      min-width: 210px;
    }
    .dropdown-item {
      border-radius: 6px;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--secondary);
      padding: 9px 14px;
      transition: background .15s, color .15s;
    }
    .dropdown-item i { color: var(--primary); }
    .dropdown-item:hover { background: rgba(245,167,0,.1); color: var(--primary-dark); }
    .dropdown-divider { margin: 4px 0; border-color: var(--border); }
    .nav-link.dropdown-toggle::after { vertical-align: 0.15em; }

    /* ── SCROLL TOP ── */
    .scroll-top-btn {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: var(--primary);
      color: var(--secondary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 4px 14px rgba(0,0,0,.2);
      opacity: 0;
      pointer-events: none;
      transition: all .3s;
      z-index: 999;
    }
    .scroll-top-btn.show { opacity: 1; pointer-events: all; }
    .scroll-top-btn:hover { background: var(--primary-dark); }

    /* ── SERVICE PAGE — larger paragraph text ── */
    .service-page p { font-size: 1.1rem; line-height: 1.85; }
    .service-page .section-desc { font-size: 1.05rem; }
    .service-page .lead { font-size: 1.3rem; }
    .service-page .accordion-body { font-size: 1.05rem; line-height: 1.8; }

    /* ── ABOUT + SERVICES GRID (service pages) ── */
    .about-srv-section { padding: 70px 0; background: var(--light-bg); }
    .about-srv-section h2 { font-size: 1.9rem; font-weight: 800; color: var(--secondary); margin-bottom: 16px; }
    .about-srv-section h4 { font-size: 1.1rem; font-weight: 800; color: var(--secondary); }
    .srv-list { list-style: none; padding: 0; margin: 0; }
    .srv-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; font-weight: 600; }
    .srv-list li::before { content: "→ "; color: var(--primary); }
    .srv-list li a { color: var(--secondary); text-decoration: none; }
    .srv-list li a:hover { color: var(--primary); }

    /* ── SERVICE MINI CARDS ── */
    .srv-mini-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--white); transition: transform .2s, box-shadow .2s; height: 100%; }
    .srv-mini-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
    .srv-mini-card img { width: 100%; height: 160px; object-fit: cover; }
    .srv-mini-card-body { padding: 12px 14px; }
    .srv-mini-card-body h5 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; color: var(--secondary); }
    .srv-mini-card-body a { font-size: .82rem; color: var(--primary); font-weight: 600; text-decoration: none; }
    .srv-mini-card-body a:hover { text-decoration: underline; }

    /* ── QUOTE SECTION DARK VARIANT ── */
    .quote-section .form-label { color: var(--secondary); }

    /* ── BUTTONS — prevent text wrap on larger screens only ── */
    @media (min-width: 576px) {
      .btn-primary-cta, .btn-outline-cta, .btn-dark-cta { white-space: nowrap; }
    }

    /* ── RESPONSIVE ── */

    /* Tablet / large tablet (≤991px) */
    @media (max-width: 991px) {
      .hero { padding: 60px 0 50px; }
      .hero-card { margin-top: 40px; }
      section { padding: 60px 0; }
      .cta-banner { padding: 50px 0; }
      .about-srv-section { padding: 56px 0; }
      .why-card { padding: 22px 18px; }
      .service-card { padding: 22px 18px; }
      /* Collapsed navbar: phone + quote button stack neatly */
      .navbar-collapse .d-flex { flex-wrap: wrap; gap: 10px; }
      .navbar-collapse .btn-quote { display: block; text-align: center; }
    }

    /* Small tablet / large phone (≤767px) */
    @media (max-width: 767px) {
      section { padding: 50px 0; }
      .hero { padding: 50px 0 40px; }
      .cta-banner { padding: 44px 0; }
      .about-srv-section { padding: 50px 0; }
      .site-footer .footer-top { padding: 50px 0 30px; }
      .section-desc { margin-bottom: 36px; }
      .hero h1 { font-size: 2.1rem; }
      /* Stack CTA banner buttons flush left on mobile */
      .cta-banner .col-lg-4 { margin-top: 12px; }
    }

    /* Phone (≤575px) */
    @media (max-width: 575px) {
      section { padding: 44px 0; }
      .hero { padding: 44px 0 36px; }
      .hero h1 { font-size: 1.85rem; }
      .hero .lead { font-size: 1.05rem; max-width: 100%; }
      .hero-card { padding: 22px 16px; }
      .hero-stat { padding: 12px 8px; }
      .hero-stat .num { font-size: 1.5rem; }
      .cta-banner { padding: 38px 0; }
      .cta-banner h2 { font-size: 1.5rem; }
      .about-srv-section { padding: 44px 0; }
      .form-card { padding: 24px 16px; }
      .contact-info-card { padding: 24px 16px; margin-top: 20px; }
      .about-guarantee { padding: 20px 16px; }
      .process-step { padding: 28px 18px 20px; }
      .why-card { padding: 18px 14px; }
      .service-card { padding: 20px 16px; }
      .section-title { font-size: 1.65rem; }
      .section-desc { font-size: 0.95rem; margin-bottom: 28px; }
      /* Buttons full-width on small phones */
      .btn-primary-cta, .btn-outline-cta, .btn-dark-cta { width: 100%; justify-content: center; }
      /* Top bar: hide hours text to prevent overflow */
      .top-bar span { display: none; }
      /* Navbar brand: tighten on mobile */
      .navbar-brand span { font-size: 1.1rem; }
      .navbar-brand small { font-size: 0.7rem; }
      /* Suburb cards: allow narrower on small screens */
      .suburb-card { min-width: 140px; }
      /* Alpha nav: smaller buttons */
      .alpha-group button { width: 30px; height: 30px; font-size: 0.72rem; }
      /* Service page large p — reduce slightly on mobile */
      .service-page p { font-size: 1rem; }
      .service-page .lead { font-size: 1.1rem; }
      /* Footer */
      .site-footer .footer-top { padding: 44px 0 28px; }
      .footer-bottom { font-size: 0.8rem; }
      /* Prevent any element from forcing horizontal scroll */
      .container { max-width: 100%; }
    }

    /* Very small phones (≤380px — covers iPhone 12 mini 375px) */
    @media (max-width: 380px) {
      .hero { padding: 36px 0 28px; }
      .hero h1 { font-size: 1.65rem; }
      .hero .lead { font-size: 1rem; }
      .hero-card { padding: 18px 12px; }
      .hero-card-phone { padding: 12px 14px; }
      .hero-card-phone .info strong { font-size: 0.88rem; }
      .section-title { font-size: 1.45rem; }
      .navbar-brand span { font-size: 0.95rem; }
      .navbar-brand small { font-size: 0.65rem; }
      .alpha-nav { gap: 6px; }
      .alpha-group button { width: 26px; height: 26px; font-size: 0.65rem; }
      .form-card { padding: 20px 14px; }
      .contact-info-card { padding: 20px 14px; }
      .service-card { padding: 18px 14px; }
      .why-card { padding: 16px 12px; }
      .process-step { padding: 24px 16px 18px; }
      section { padding: 38px 0; }
    }
