:root {
        --navy: #111111;
        --navy-2: #000000;
        --navy-light: #222222;
        --orange: #59b200;
        --orange-2: #4a9400;
        --orange-soft: #f2ffe6;
        --text: #0f213d;
        --muted: #5e6f8a;
        --line: #dfe6f0;
        --soft: #f4f7fc;
        --white: #ffffff;
        --shadow: 0 16px 48px rgba(9, 27, 59, 0.12);
        --shadow-lg: 0 24px 64px rgba(9, 27, 59, 0.18);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        font-family: "Manrope", "Segoe UI", sans-serif;
        color: var(--text);
        background: #fff;
        line-height: 1.5;
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: var(--transition);
    }

    img {
        display: block;
        max-width: 100%;
    }

    .wrap {
        width: min(1210px, calc(100% - 56px));
        margin: 0 auto;
    }

    /* Topbar styling */
    .topbar {
        height: auto;
        min-height: 50px;
        background: radial-gradient(circle at 90% 10%, rgba(37, 79, 145, .75), transparent 26%), var(--navy);
        color: #fff;
        font-size: 13.5px;
        font-weight: 700;
        padding: 10px 0;
    }

    .topbar .wrap,
    .nav .wrap {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
    }

    .top-left,
    .top-right,
    .socials,
    .contact-pill,
    .meta-row,
    .rating {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .topbar i {
        color: var(--orange);
        font-size: 15px;
        flex: 0 0 auto;
    }

    /* Socials block */
    .socials {
        gap: 10px;
        font-size: 14px;
    }

    .socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        transition: var(--transition);
    }

    .socials a:hover {
        background: var(--orange);
        transform: translateY(-2px);
    }

    /* Nav bar styling */
    .nav {
        height: auto;
        min-height: 120px;
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.96);
        border-bottom: 1px solid rgba(9, 27, 59, 0.08);
        position: sticky;
        top: 0;
        z-index: 200;
        backdrop-filter: blur(14px);
        transition: var(--transition);
    }

    .brand {
        display: inline-flex;
        align-items: center;
        min-width: 178px;
    }

    .logo-icon {
        font-size: 32px;
        color: var(--orange);
        margin-right: 12px;
        filter: drop-shadow(0 2px 4px rgba(89, 178, 0, 0.2));
    }

    .logo-text {
        line-height: .9;
        font-weight: 900;
        letter-spacing: -.04em;
        font-size: 26px;
    }

    .logo-text span:first-child {
        color: var(--navy);
        display: block;
    }

    .logo-text span:last-child {
        color: var(--orange);
        display: block;
    }

    .menu {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .menu a {
        position: relative;
        padding: 34px 0;
        color: var(--navy);
    }

    .menu a:hover {
        color: var(--orange);
    }

    .menu a.active {
        color: var(--orange);
    }

    .menu a.active::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 54px;
        height: 3px;
        border-radius: 3px;
        background: var(--orange);
        transform: translateX(-50%);
    }

    /* Nav toggle for mobile menu */
    .nav-toggle {
        display: none;
        background: none;
        border: 0;
        font-size: 24px;
        color: var(--navy);
        cursor: pointer;
        padding: 6px;
        border-radius: 4px;
        transition: var(--transition);
    }

    .nav-toggle:hover {
        background: var(--soft);
        color: var(--orange);
    }

    /* Buttons styling */
    .btn {
        border: 0;
        border-radius: 8px;
        color: #white;
        background: linear-gradient(135deg, var(--orange), var(--orange-2));
        height: 54px;
        padding: 0 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        box-shadow: 0 10px 24px rgba(89, 178, 0, 0.25);
        cursor: pointer;
        white-space: nowrap;
        color: #fff;
        transition: var(--transition);
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(89, 178, 0, 0.35);
    }

    .btn.secondary {
        background: #fff;
        color: var(--navy);
        border: 1.5px solid #dce4ef;
        box-shadow: 0 6px 18px rgba(9, 27, 59, 0.08);
    }

    .btn.secondary:hover {
        border-color: var(--orange);
        color: var(--orange);
        box-shadow: 0 10px 22px rgba(9, 27, 59, 0.12);
    }

    .btn i {
        font-size: 16px;
        transition: transform 0.2s;
    }

    .btn:hover i {
        transform: translateX(3px);
    }

    /* Hero Section */
    .hero {
        position: relative;
        min-height: 620px;
        overflow: hidden;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 35%, rgba(255, 255, 255, 0.22) 65%, rgba(255, 255, 255, 0) 100%),
            url("https://humewrecker.com.au/wp-content/uploads/2026/06/hero.jpg") center right / cover no-repeat;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 140px;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
        pointer-events: none;
    }

    .hero-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(480px, 1.1fr) 390px;
        gap: 60px;
        min-height: 620px;
        align-items: center;
        padding: 40px 0;
    }

    .trust {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 9px 18px;
        border: 1px solid #e2e8f1;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.9);
        font-size: 13px;
        font-weight: 800;
        color: var(--navy);
        box-shadow: 0 8px 20px rgba(9, 27, 59, 0.06);
    }

    .trust i {
        color: var(--orange);
        font-size: 14px;
    }

    h1 {
        margin: 20px 0 16px;
        font-size: clamp(38px, 4.8vw, 56px);
        line-height: 1.1;
        letter-spacing: -.04em;
        font-weight: 900;
        color: var(--navy);
    }

    h1 .orange,
    h2 .orange {
        color: var(--orange);
    }

    .hero p {
        max-width: 580px;
        margin: 0 0 32px;
        color: #384d6b;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.6;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        align-items: center;
        margin-bottom: 46px;
        flex-wrap: wrap;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(4, max-content);
        gap: 24px;
        align-items: center;
    }

    .stat {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 122px;
        padding-right: 20px;
        border-right: 1.5px solid #ccd7e6;
        font-size: 11.5px;
        font-weight: 800;
        line-height: 1.3;
        color: var(--muted);
    }

    .stat:last-child {
        border-right: 0;
        padding-right: 0;
    }

    .stat strong {
        display: block;
        font-size: 18px;
        line-height: 1.1;
        color: var(--navy);
        margin-bottom: 2px;
    }

    .stat i {
        font-size: 20px;
        color: var(--navy-light);
    }

    .stat:first-child i {
        color: var(--orange);
    }

    /* Quote Card on Hero */
    .quote-card {
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        padding: 36px 32px 30px;
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(16px);
        transition: var(--transition);
    }

    .quote-card h2 {
        margin: 0 0 24px;
        font-size: 23px;
        text-align: center;
        line-height: 1.2;
        font-weight: 900;
        letter-spacing: -.02em;
        text-transform: uppercase;
        color: var(--navy);
    }

    .form-group {
        margin-bottom: 16px;
        text-align: left;
    }

    .form-group label {
        display: block;
        margin: 0 0 6px;
        font-size: 12px;
        font-weight: 800;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .form-group input {
        width: 100%;
        height: 46px;
        border: 1.5px solid #d9e2ec;
        border-radius: 8px;
        background: #fff;
        padding: 0 16px;
        font: 700 14px "Manrope", sans-serif;
        color: var(--text);
        outline: none;
        transition: var(--transition);
    }

    .form-group input:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(89, 178, 0, 0.12);
    }

    .quote-card .btn {
        width: 100%;
        margin-top: 8px;
    }

    .secure {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 700;
    }

    /* Fluent Forms embeds (quote request + parts inquiry) styled to match the site's compact form look */
    #quote .fluentform,
    #parts-inquiry-form .fluentform {
        width: 100%;
    }

    #quote .ff-el-group,
    #parts-inquiry-form .ff-el-group {
        margin-bottom: 16px;
        text-align: left;
    }

    #quote .ff-el-input--label,
    #parts-inquiry-form .ff-el-input--label {
        margin: 0 0 6px;
    }

    #quote .ff-el-input--label label,
    #parts-inquiry-form .ff-el-input--label label {
        display: block;
        font-size: 12px;
        font-weight: 800;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    #quote .ff-el-form-control,
    #parts-inquiry-form .ff-el-form-control {
        width: 100%;
        height: 46px;
        border: 1.5px solid #d9e2ec;
        border-radius: 8px;
        background: #fff;
        padding: 0 16px;
        font: 700 14px "Manrope", sans-serif;
        color: var(--text);
    }

    #quote .ff-el-form-control:focus,
    #parts-inquiry-form .ff-el-form-control:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(89, 178, 0, 0.12);
        outline: none;
    }

    #quote .ff_submit_btn_wrapper,
    #parts-inquiry-form .ff_submit_btn_wrapper {
        margin-top: 8px;
    }

    #quote .ff-btn-submit,
    #parts-inquiry-form .ff-btn-submit {
        width: 100%;
        border: 0;
        border-radius: 8px;
        color: #fff;
        background: linear-gradient(135deg, var(--orange), var(--orange-2));
        height: 54px;
        padding: 0 28px;
        font-weight: 800;
        font-size: 14px;
        cursor: pointer;
        transition: var(--transition);
    }

    #quote .ff-btn-submit:hover,
    #parts-inquiry-form .ff-btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(89, 178, 0, 0.35);
    }

    #quote .ff-errors-in-stack {
        margin-top: 12px;
    }

    .secure i {
        color: #16802a;
        font-size: 13px;
    }

    section {
        padding: 54px 0;
    }

    .section-title {
        margin: 0 0 36px;
        text-align: center;
        font-size: 32px;
        line-height: 1.2;
        font-weight: 900;
        letter-spacing: -.03em;
        color: var(--navy);
    }

    /* Why Choose Us feature cards */
    .features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1080px;
        margin: 0 auto;
    }

    .feature-card {
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 20px;
        align-items: center;
        min-height: 110px;
        padding: 22px 24px;
        background: #white;
        border: 1.5px solid #e4eaf2;
        border-radius: 14px;
        box-shadow: 0 6px 16px rgba(9, 27, 59, 0.03);
        transition: var(--transition);
        background-color: #fff;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        border-color: var(--line);
        box-shadow: var(--shadow);
    }

    .bubble {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        transition: var(--transition);
    }

    .bubble.orange {
        background: #fff0e8;
        color: var(--orange);
    }

    .bubble.blue {
        background: #eaf2ff;
        color: #072b6c;
    }

    .bubble.green {
        background: #e8f8e9;
        color: #16802a;
    }

    .bubble.purple {
        background: #f0eaff;
        color: #5533c7;
    }

    .bubble.amber {
        background: #fff0df;
        color: #df701f;
    }

    .bubble i {
        font-size: 30px;
    }

    .feature-card h3,
    .step h3 {
        margin: 0 0 6px;
        font-size: 17px;
        font-weight: 900;
        letter-spacing: -.02em;
        color: var(--navy);
    }

    .feature-card p,
    .step p,
    .parts-text p,
    .env p {
        margin: 0;
        color: var(--muted);
        font-size: 13.5px;
        font-weight: 600;
        line-height: 1.5;
    }

    /* Sell steps section */
    .steps-section {
        padding-top: 14px;
    }

    .steps {
        display: grid;
        grid-template-columns: 1fr 84px 1fr 84px 1fr;
        align-items: center;
        max-width: 1050px;
        margin: 0 auto;
    }

    .step {
        position: relative;
        display: grid;
        grid-template-columns: 78px 1fr;
        gap: 22px;
        align-items: center;
        padding: 10px;
    }

    .num {
        position: absolute;
        top: -8px;
        left: 27px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--orange);
        color: #fff;
        display: grid;
        place-items: center;
        font-size: 13px;
        font-weight: 900;
        z-index: 2;
        box-shadow: 0 4px 8px rgba(89, 178, 0, 0.3);
    }

    .step .bubble {
        background: #f0f3f8;
        width: 78px;
        height: 78px;
        color: var(--navy);
    }

    .step:hover .bubble {
        background: var(--navy);
        color: #fff;
    }

    .dash {
        height: 1px;
        border-top: 2px dashed var(--muted);
        opacity: 0.5;
    }

    /* Vehicle Band */
    .vehicle-band {
        background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
        padding-top: 40px;
    }

    .vehicles {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 14px;
        max-width: 1160px;
        margin: 0 auto;
    }

    .vehicle {
        position: relative;
        min-height: 172px;
        overflow: hidden;
        border-radius: 12px;
        background: var(--navy);
        box-shadow: 0 8px 24px rgba(9, 27, 59, 0.1);
        transition: var(--transition);
        cursor: pointer;
    }

    .vehicle::before {
        content: "";
        position: absolute;
        inset: 0 0 50px;
        background: var(--photo) center / cover no-repeat;
        transform: scale(1.01);
        transition: var(--transition);
    }

    .vehicle::after {
        content: "";
        position: absolute;
        inset: 50% 0 0;
        background: linear-gradient(0deg, var(--navy) 40%, rgba(9, 27, 59, 0));
        transition: var(--transition);
    }

    .vehicle>span {
        position: absolute;
        z-index: 2;
        left: 0;
        right: 0;
        bottom: 0;
        height: 52px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #fff;
        font-size: 12.5px;
        font-weight: 800;
        text-align: center;
        padding: 0 8px;
    }

    .vehicle>span>span {
        display: inline-block;
        line-height: 1.25;
    }

    .vehicle>span>i {
        font-size: 16px;
        color: var(--orange);
        transition: var(--transition);
    }

    .vehicle:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .vehicle:hover::before {
        transform: scale(1.08);
    }

    .vehicle:hover::after {
        background: linear-gradient(0deg, var(--orange) 30%, rgba(89, 178, 0, 0));
    }

    .vehicle:hover>span>i {
        transform: scale(1.15);
        color: #fff;
    }

    /* Parts Band */
    .parts-band {
        padding: 54px 0;
        background: linear-gradient(180deg, #f2f6fb, #fff);
    }

    .parts-grid {
        display: grid;
        grid-template-columns: 310px 1fr;
        gap: 44px;
        align-items: center;
    }

    .eyebrow {
        margin: 0 0 8px;
        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .parts-text h2,
    .env h2 {
        margin: 0 0 16px;
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -.03em;
        font-weight: 900;
        color: var(--navy);
    }

    .check-list {
        list-style: none;
        margin: 24px 0 0;
        padding: 0;
        color: #35475e;
        font-size: 13.5px;
        font-weight: 700;
    }

    .check-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 11px 0;
    }

    .check-list i {
        color: var(--orange);
        font-size: 16px;
        flex: 0 0 auto;
    }

    .parts-panel {
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid #dfe6f2;
        border-radius: 20px;
        padding: 24px;
        box-shadow: var(--shadow);
    }

    .part-cards {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }

    .part {
        height: 174px;
        border: 1px solid #e2e8f1;
        border-radius: 12px;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 16px 10px;
        text-align: center;
        font-size: 13px;
        font-weight: 900;
        color: var(--navy);
        transition: var(--transition);
        cursor: pointer;
    }

    .part:hover {
        transform: translateY(-4px);
        border-color: var(--orange);
        box-shadow: 0 8px 24px rgba(89, 178, 0, 0.08);
    }

    .part img {
        height: 90px;
        object-fit: contain;
        filter: drop-shadow(0 8px 12px rgba(9, 27, 59, 0.1));
        transition: var(--transition);
    }

    .part:hover img {
        transform: scale(1.05);
    }

    .search-row {
        display: grid;
        grid-template-columns: 1fr 180px;
        gap: 12px;
        margin-top: 18px;
    }

    .search-row input {
        margin: 0;
        height: 50px;
        border: 1.5px solid #d9e2ec;
        border-radius: 8px;
        padding: 0 16px;
        outline: none;
        font: 700 14px "Manrope", sans-serif;
        transition: var(--transition);
    }

    .search-row input:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(89, 178, 0, 0.1);
    }

    .search-row .btn {
        height: 50px;
        background: var(--navy);
        box-shadow: none;
        padding: 0 20px;
        font-size: 13px;
    }

    .search-row .btn:hover {
        background: var(--orange);
    }

    .service-strip {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-top: 20px;
        color: var(--muted);
        font-size: 12px;
        font-weight: 800;
        border-top: 1px solid var(--line);
        padding-top: 18px;
    }

    .service-strip span {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .service-strip i {
        font-size: 15px;
        color: var(--navy-light);
    }

    /* Environmental commitment section (No Emojis) */
    .env-band {
        padding: 0;
        background: #fff;
    }

    .env-grid {
        display: grid;
        grid-template-columns: 410px 1fr;
        align-items: center;
        gap: 60px;
    }

    .env-photo {
        height: 240px;
        border-radius: 0 16px 16px 0;
        overflow: hidden;
        background:
            linear-gradient(90deg, rgba(77, 145, 45, 0.2), rgba(255, 255, 255, 0)),
            url("https://humewrecker.com.au/wp-content/uploads/2026/06/wreckhume.webp") center / cover no-repeat;
        position: relative;
    }

    /* Proper Web-Standard Font Icon representation replacing emoji */
    .env-photo::after {
        content: "\f1b8";
        /* recycle icon code in Font Awesome */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 36px;
        top: 46px;
        width: 82px;
        height: 82px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.9);
        color: #34a540;
        font-size: 38px;
        box-shadow: 0 12px 32px rgba(25, 87, 23, 0.18);
    }

    .env {
        padding: 48px 0;
        max-width: 710px;
    }

    .env .check-list i {
        color: #34a540;
    }

    /* Reviews carousel slider container (proper arrow buttons, no emojis) */
    .reviews-band {
        background: linear-gradient(180deg, #f5f8fc 0%, #fff 100%);
        padding: 54px 0;
    }

    .reviews-carousel {
        position: relative;
        display: flex;
        align-items: center;
        max-width: 1140px;
        margin: 0 auto;
        gap: 20px;
    }

    .slider-viewport {
        overflow: hidden;
        width: 100%;
        padding: 8px 0;
    }

    .slider-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 20px;
    }

    .review {
        flex: 0 0 calc((100% - 40px) / 3);
        /* 3 cards visible on desktop */
        min-height: 154px;
        border: 1px solid #dfe6ef;
        border-radius: 12px;
        background: #fff;
        padding: 24px;
        box-shadow: 0 6px 18px rgba(9, 27, 59, 0.03);
        transition: var(--transition);
    }

    .review:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

    .arrow {
        height: 44px;
        width: 44px;
        display: grid;
        place-items: center;
        border: 1.5px solid #dce4ef;
        border-radius: 50%;
        background: #fff;
        color: var(--navy);
        cursor: pointer;
        font-size: 16px;
        flex: 0 0 auto;
        transition: var(--transition);
        box-shadow: 0 4px 12px rgba(9, 27, 59, 0.05);
    }

    .arrow:hover {
        background: var(--navy);
        color: #fff;
        border-color: var(--navy);
        transform: scale(1.05);
    }

    .stars {
        color: #ffb800;
        font-size: 14px;
        display: flex;
        gap: 3px;
        margin-bottom: 12px;
    }

    .review p {
        margin: 0 0 12px;
        color: var(--text);
        font-size: 13px;
        font-weight: 600;
        line-height: 1.6;
    }

    .review strong {
        font-size: 13.5px;
        color: var(--navy);
        font-weight: 900;
    }

    .dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }

    .dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccd5e3;
        cursor: pointer;
        transition: var(--transition);
        /* Improve touch target area */
        border: 6px solid transparent;
        background-clip: padding-box;
        margin: 0 2px;
    }

    .dots span.active {
        background: var(--orange);
        width: 24px;
        border-radius: 6px;
    }

    /* FAQ Details design */
    .faq-band {
        padding: 24px 0 54px;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 36px;
        max-width: 1160px;
        margin: 0 auto;
    }

    details {
        border: 1.5px solid #dce4ef;
        border-radius: 8px;
        background: #fff;
        overflow: hidden;
        margin-bottom: 4px;
        transition: var(--transition);
    }

    details[open] {
        border-color: var(--orange);
        box-shadow: 0 6px 18px rgba(9, 27, 59, 0.04);
    }

    summary {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 52px;
        padding: 14px 20px;
        cursor: pointer;
        font-size: 13.5px;
        font-weight: 800;
        color: var(--navy);
        outline: none;
        transition: var(--transition);
    }

    summary::-webkit-details-marker {
        display: none;
    }

    summary::after {
        content: "\f078";
        /* down chevron */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 12px;
        color: var(--muted);
        transition: transform 0.3s ease;
    }

    details[open] summary::after {
        transform: rotate(180deg);
        color: var(--orange);
    }

    details p {
        margin: 0;
        padding: 0 20px 18px;
        color: var(--muted);
        font-size: 13px;
        font-weight: 600;
        line-height: 1.6;
    }

    /* Footer styling */
    footer {
        color: #fff;
        background:
            radial-gradient(circle at 98% 42%, rgba(77, 113, 170, .32), transparent 18%),
            linear-gradient(90deg, #091b3b, #040d1c);
    }

    .footer-main {
        position: relative;
        display: grid;
        grid-template-columns: 320px 1fr 410px;
        gap: 72px;
        padding: 48px 0;
        overflow: hidden;
    }

    .footer-main::after {
        content: "";
        position: absolute;
        right: -44px;
        top: -10px;
        width: 230px;
        height: 230px;
        border: 18px solid rgba(255, 255, 255, .04);
        border-radius: 50%;
        box-shadow: inset 0 0 0 22px rgba(255, 255, 255, .025);
        pointer-events: none;
    }

    footer .logo-text span:first-child {
        color: #white;
        color: #fff;
    }

    footer .logo-icon {
        filter: drop-shadow(0 2px 8px rgba(89, 178, 0, 0.4));
    }

    .footer-main p {
        margin: 16px 0 0;
        color: rgba(255, 255, 255, .8);
        font-size: 13.5px;
        font-weight: 600;
        line-height: 1.6;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding-top: 10px;
    }

    footer h4 {
        margin: 0 0 16px;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--orange);
    }

    footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    footer li {
        margin: 10px 0;
        font-size: 13.5px;
        font-weight: 600;
    }

    footer li a {
        color: rgba(255, 255, 255, .8);
    }

    footer li a:hover {
        color: var(--orange);
    }

    .footer-cta {
        display: flex;
        gap: 14px;
        align-items: center;
        margin-bottom: 24px;
    }

    .footer-cta .btn {
        height: 48px;
        padding: 0 24px;
        font-size: 12px;
    }

    .footer-cta .btn.secondary {
        color: #fff;
        background: transparent;
        border-color: rgba(255, 255, 255, .45);
        box-shadow: none;
    }

    .footer-cta .btn.secondary:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

    .contact-list {
        color: rgba(255, 255, 255, .95);
        font-size: 13.5px;
        font-weight: 700;
    }

    .contact-list div {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 12px 0;
    }

    .contact-list i {
        color: var(--orange);
        font-size: 15px;
        flex: 0 0 auto;
        width: 16px;
        text-align: center;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 20px 0;
        color: rgba(255, 255, 255, .65);
        font-size: 12.5px;
        font-weight: 600;
    }

    /* Modal Overlay */
    .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(5, 17, 38, 0.65);
        backdrop-filter: blur(8px);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .modal-content {
        background: #fff;
        border-radius: 20px;
        padding: 40px;
        max-width: 500px;
        width: calc(100% - 32px);
        box-shadow: var(--shadow-lg);
        text-align: center;
        position: relative;
        transform: translateY(20px);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modal-overlay.active .modal-content {
        transform: translateY(0);
    }

    .modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: 0;
        font-size: 20px;
        color: var(--muted);
        cursor: pointer;
        transition: var(--transition);
    }

    .modal-close:hover {
        color: var(--orange);
    }

    .modal-icon {
        font-size: 56px;
        margin-bottom: 18px;
    }

    .modal-icon.success {
        color: #16802a;
    }

    .modal-icon.info {
        color: var(--orange);
    }

    .modal-content h3 {
        font-size: 24px;
        font-weight: 900;
        margin: 0 0 12px;
        color: var(--navy);
    }

    .modal-content p {
        color: var(--muted);
        font-size: 14px;
        margin: 0 0 20px;
        line-height: 1.6;
    }

    .submitted-details {
        background: var(--soft);
        border-radius: 12px;
        padding: 18px;
        text-align: left;
        margin-bottom: 20px;
        border: 1px solid var(--line);
    }

    .submitted-details p {
        margin: 8px 0;
        font-size: 13.5px;
        color: var(--text);
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        padding-bottom: 8px;
    }

    .submitted-details p:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .submitted-details strong {
        color: var(--navy);
        display: inline-block;
        width: 90px;
    }

    .modal-note {
        font-size: 15px !important;
        color: var(--text) !important;
    }

    .modal-content .btn {
        width: 100%;
    }

    /* Media query adjustments */
    @media (max-width: 1120px) {
        .topbar {
            padding: 12px 0;
        }

        .topbar .wrap {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

        .top-left,
        .top-right {
            justify-content: center;
        }

        .nav {
            height: auto;
            min-height: 100px;
            padding: 10px 0;
        }

        .nav .wrap {
            padding: 0;
            gap: 16px;
        }

        .brand img {
            max-width: 200px;
            height: auto;
        }

        .nav-toggle {
            display: block;
        }

        /* Sliding Mobile Navigation Drawer */
        .menu {
            display: flex;
            flex-direction: column;
            position: fixed;
            top: 86px;
            left: -100%;
            width: 320px;
            height: calc(100vh - 86px);
            background: #fff;
            z-index: 190;
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 40px 28px !important;
            gap: 24px !important;
            box-shadow: 10px 0 30px rgba(9, 27, 59, 0.08);
            overflow-y: auto;
            align-items: flex-start;
            justify-content: flex-start;
        }

        .menu.active {
            left: 0 !important;
        }

        .menu li {
            width: 100%;
        }

        .menu a {
            display: block;
            width: 100%;
            font-size: 16px !important;
            padding: 12px 0 !important;
            border-bottom: 1px dashed var(--line);
        }

        .menu a.active::after {
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            transform: none;
        }

        .hero-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        /* Use a vertical gradient for the stacked mobile layout to blend the image seamlessly */
        .hero {
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.98) 35%, rgba(255, 255, 255, 1) 100%),
                url("https://humewrecker.com.au/wp-content/uploads/2026/06/hero.jpg") center top / cover no-repeat;
        }

        .quote-card {
            width: 100%;
            max-width: 540px;
            margin: 0 auto;
        }

        .stats {
            grid-template-columns: repeat(2, max-content);
        }

        .features {
            grid-template-columns: repeat(2, 1fr);
        }

        .parts-grid,
        .env-grid,
        .footer-main {
            grid-template-columns: 1fr;
        }

        .env-photo {
            border-radius: 16px;
        }

        .part-cards {
            grid-template-columns: repeat(3, 1fr);
        }

        .reviews-carousel .arrow {
            display: none;
        }
    }

    @media (max-width: 900px) {
        .review {
            flex: 0 0 calc((100% - 20px) / 2);
            /* 2 reviews visible */
        }

        .vehicles {
            grid-template-columns: repeat(4, 1fr);
        }

        .faq-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 720px) {
        .wrap {
            width: min(100% - 28px, 1210px);
        }

        .top-left,
        .top-right {
            flex-direction: column;
            gap: 8px;
            align-items: center;
        }

        .nav .wrap {
            gap: 10px;
        }

        .brand img {
            max-width: 150px;
        }

        .nav .btn {
            padding: 0 14px;
            font-size: 12px;
            height: 42px;
        }

        .hero {
            background-position: 65% center;
        }

        .hero-grid {
            min-height: auto;
            padding: 28px 0;
        }

        .hero p {
            font-size: 15px;
        }

        .hero-actions .btn {
            width: 100%;
        }

        .section-title {
            font-size: 26px;
            margin-bottom: 28px;
        }

        .features,
        .steps,
        .search-row {
            grid-template-columns: 1fr;
        }

        .stats,
        .part-cards,
        .service-strip {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .service-strip span {
            justify-content: flex-start;
        }

        .stat {
            border: none;
            background: #f4f7fc;
            padding: 16px;
            border-radius: 12px;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .stat:last-child {
            border-bottom: none;
        }

        .quote-card {
            padding: 28px 20px;
        }

        .steps {
            gap: 20px;
        }

        .dash {
            display: block;
            width: 2px;
            height: 24px;
            border-top: none;
            border-left: 2px dashed var(--muted);
            margin: 0 0 0 38px;
        }

        .step {
            grid-template-columns: 78px 1fr;
        }

        .parts-grid {
            gap: 24px;
        }

        .env-grid {
            gap: 20px;
        }

        .env-photo {
            height: 180px;
        }

        .footer-main {
            gap: 30px;
        }

        .footer-links,
        .footer-cta {
            grid-template-columns: 1fr;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            padding-top: 0;
        }

        .footer-cta .btn {
            width: 100%;
        }

        .part {
            height: 160px;
        }
    }

    @media (max-width: 600px) {
        .review {
            flex: 0 0 100%;
            /* 1 review visible */
        }

        .vehicles {
            grid-template-columns: repeat(2, 1fr);
        }

        .vehicle {
            min-height: 130px;
        }

        .vehicle>span {
            font-size: 11.5px;
            height: 44px;
        }
    /* Scroll to Top Button */
    #scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--orange);
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: var(--transition);
        box-shadow: 0 4px 12px rgba(89, 178, 0, 0.3);
    }
    
    #scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #scroll-to-top:hover {
        background: var(--navy);
        box-shadow: 0 6px 16px rgba(9, 27, 59, 0.2);
        transform: translateY(-2px);
    }
    
    @media (max-width: 720px) {
        #scroll-to-top {
            bottom: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            font-size: 16px;
        }
    }