/* ==========================================================================
   PRESSURE WASHING SYDNEY — PAGE-SPECIFIC STYLES
   Scope: .pressure-washing-page ONLY.
   Does not touch header, navbar, footer, breadcrumb, maps, Bootstrap,
   or any shared component CSS. No universal selector, no body/html/global
   element selectors, no font-family declarations.
   ========================================================================== */

.pressure-washing-page p {
    text-align: justify;
}

.tj-breadcrumb-title {
    text-align: center !important;
}

.tj-breadcrumb-area p {
    text-align: center !important;
}


/* ---------- Section rhythm ---------- */
.pressure-washing-page .pressure-section {
    padding: 90px 0;
}

.pressure-washing-page .pressure-section--tint {
    background-color: #ddeffe;
}

.pressure-washing-page .pressure-section--white {
    background-color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pressure-washing-page .pressure-section {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 767px) {
    .pressure-washing-page .pressure-section {
        padding: 55px 0;
    }
}

/* ---------- Section header (tag / title / description) ---------- */
.pressure-washing-page .pressure-section-header {
    max-width: 780px;
    margin: 0 auto 45px;
    text-align: center;
}

.pressure-washing-page .pressure-section-header--left {
    margin: 0 0 35px;
    text-align: left;
}

.pressure-washing-page .pressure-section-tag {
    display: inline-block;
    color: #077cea;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(7, 124, 234, 0.1);
}

.pressure-washing-page .pressure-section-title {
    color: #0a2540;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.pressure-washing-page .pressure-section-desc {
    color: #55697d;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .pressure-washing-page .pressure-section-title {
        font-size: 26px;
    }

    .pressure-washing-page .pressure-section-desc {
        font-size: 16px;
    }
}

/* ---------- Body copy ---------- */
.pressure-washing-page .pressure-copy p {
    color: #4d5f70;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.pressure-washing-page .pressure-copy p:last-child {
    margin-bottom: 0;
}

.pressure-washing-page .pressure-copy strong {
    color: #0a2540;
}

/* ---------- Hero ---------- */
.pressure-washing-page .pressure-hero {
    padding: 70px 0 90px;
}

.pressure-washing-page .pressure-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.pressure-washing-page .pressure-hero-content-order {
    order: 2;
}

.pressure-washing-page .pressure-hero-image-order {
    order: 1;
}

.pressure-washing-page .pressure-hero-title {
    color: #0a2540;
    font-weight: 800;
    font-size: 42px;
    line-height: 1.2;
    margin: 14px 0 18px;
}

.pressure-washing-page .pressure-hero-cta-row {
    margin-top: 28px;
}

.pressure-washing-page .pressure-page-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(10, 37, 64, 0.14);
    aspect-ratio: 4 / 3;
}

.pressure-washing-page .pressure-page-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pressure-washing-page .pressure-page-image:hover img {
    transform: scale(1.04);
}

@media only screen and (max-width: 991px) {
    .pressure-washing-page .pressure-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .pressure-washing-page .pressure-hero-content-order,
    .pressure-washing-page .pressure-hero-image-order {
        order: initial;
    }

    .pressure-washing-page .pressure-hero-title {
        font-size: 30px;
    }
}

/* ---------- Two-column content + image sections ---------- */
.pressure-washing-page .pressure-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 55px;
    align-items: center;
}

.pressure-washing-page .pressure-split--reverse .pressure-split-image {
    order: 1;
}

.pressure-washing-page .pressure-split--reverse .pressure-split-content {
    order: 2;
}

@media only screen and (max-width: 991px) {
    .pressure-washing-page .pressure-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pressure-washing-page .pressure-split--reverse .pressure-split-image,
    .pressure-washing-page .pressure-split--reverse .pressure-split-content {
        order: initial;
    }
}

/* ---------- Chip / checklist grid (used for supplied bullet lists) ---------- */
.pressure-washing-page .pressure-chip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 30px auto;
    padding: 0;
    list-style: none;
}

.pressure-washing-page .pressure-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 10px;
    padding: 14px 16px;
    color: #23425c;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pressure-washing-page .pressure-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(7, 124, 234, 0.12);
    border-color: #077cea;
}

.pressure-washing-page .pressure-chip-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.12);
    color: #077cea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ---------- Surface subsection cards (Commercial Surfaces section) ---------- */
.pressure-washing-page .pressure-surface-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 40px;
}

.pressure-washing-page .pressure-surface-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 8px 28px rgba(10, 37, 64, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease,
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

/* Small blue accent on top */
.pressure-washing-page .pressure-surface-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 4px;
    background: #077cea;
    border-radius: 0 0 6px 0;
}

.pressure-washing-page .pressure-surface-card:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.11);
}

.pressure-washing-page .pressure-surface-card h3 {
    color: #0a2540;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 14px;
}

.pressure-washing-page .pressure-surface-card p {
    color: #55697d;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 15px;
}

.pressure-washing-page .pressure-surface-card p:last-child {
    margin-bottom: 0;
}

.pressure-washing-page .pressure-surface-card ul {
    margin: 18px 0 18px;
    padding: 0;
    list-style: none;
}

.pressure-washing-page .pressure-surface-card li {
    position: relative;
    padding: 7px 0 7px 24px;
    color: #4d5f70;
    font-size: 14.5px;
    line-height: 1.6;
    border-bottom: 1px solid #eef3f8;
}

.pressure-washing-page .pressure-surface-card li:last-child {
    border-bottom: 0;
}

.pressure-washing-page .pressure-surface-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.10);
    color: #077cea;
    font-size: 11px;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .pressure-washing-page .pressure-surface-grid {
        grid-template-columns: 1fr;
    }
    .pressure-washing-page .pressure-surface-card {
    padding: 26px 22px;
    border-radius: 14px;
    }

    .pressure-washing-page .pressure-surface-card h3 {
        font-size: 18px;
    }

    .pressure-washing-page .pressure-surface-card p {
        font-size: 15px;
    }
}

/* ---------- Property-type / why-choose card grid ----------
   Reuses the site's existing .service-card-modern / .service-icon /
   .service-title markup for card look-and-feel; only grid/layout wrapping
   is page-specific. */
/* =========================================================
   PROPERTY TYPE CARDS
========================================================= */

.pressure-washing-page .pressure-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Property card */
.pressure-washing-page .pressure-card-grid .service-card-modern {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    padding: 30px 24px;
    background: #ffffff;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

/* Icon */
.pressure-washing-page .pressure-card-grid .service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.10);
    color: #077cea;
    font-size: 21px;
}

/* Heading */
.pressure-washing-page .pressure-card-grid .service-title {
    margin: 0;
    color: #0a2540;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

/* Hover */
.pressure-washing-page .pressure-card-grid .service-card-modern:hover {
    transform: translateY(-6px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 16px 35px rgba(10, 37, 64, 0.11);
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .pressure-washing-page .pressure-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
    .pressure-washing-page .pressure-card-grid,
    .pressure-washing-page .pressure-card-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 575px) {
    .pressure-washing-page .pressure-card-grid,
    .pressure-washing-page .pressure-card-grid--four {
        grid-template-columns: 1fr;
    }
}

/* ---------- Process steps ---------- */
.pressure-washing-page .pressure-process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 45px auto 0;
}

.pressure-washing-page .pressure-process-step {
    margin: 0;
}

.pressure-washing-page .pressure-process-step:nth-child(1) {
    grid-column: span 2;
}

.pressure-washing-page .pressure-process-step:nth-child(2) {
    grid-column: span 2;
}

.pressure-washing-page .pressure-process-step:nth-child(3) {
    grid-column: span 2;
}

.pressure-washing-page .pressure-process-step:nth-child(4) {
    grid-column: 2 / span 2;
}

.pressure-washing-page .pressure-process-step:nth-child(5) {
    grid-column: 4 / span 2;
}

.pressure-washing-page .pressure-process-step {
    background: #077cea;
    border: 1px solid #077cea;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pressure-washing-page .pressure-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 24px rgba(10, 37, 64, 0.22);
}

.pressure-washing-page .pressure-step-num {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #ffffff;
    color: #077cea;
    font-weight: 700;
    font-size: 15px;
}

.pressure-washing-page .pressure-step-num:hover{
    transform: translateY(-3px);
}

.pressure-washing-page .pressure-process-step h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 16.5px;
    margin-bottom: 8px;
}

.pressure-washing-page .pressure-process-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {

    .pressure-washing-page .pressure-process-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;

        width: 100%;
        max-width: 100%;

        margin: 35px auto 0;
    }

    .pressure-washing-page .pressure-process-step,
    .pressure-washing-page .pressure-process-step:nth-child(1),
    .pressure-washing-page .pressure-process-step:nth-child(2),
    .pressure-washing-page .pressure-process-step:nth-child(3),
    .pressure-washing-page .pressure-process-step:nth-child(4),
    .pressure-washing-page .pressure-process-step:nth-child(5) {
        grid-column: auto !important;

        width: 100%;
        min-width: 0;

        margin: 0;

        box-sizing: border-box;

        display: flex;
        flex-direction: row;
        align-items: center;

        gap: 16px;

        padding: 24px 20px;

        text-align: left;
    }

    .pressure-washing-page .pressure-step-num {
        width: 40px;
        height: 40px;

        flex: 0 0 40px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0;

        line-height: 1;
    }

    .pressure-washing-page .pressure-process-step > div:last-child {
        flex: 1;
        min-width: 0;
    }

    .pressure-washing-page .pressure-process-step h3 {
        margin: 0 0 7px;

        font-size: 16px;
        line-height: 1.4;
    }

    .pressure-washing-page .pressure-process-step p {
        margin: 0;

        font-size: 14px;
        line-height: 1.65;
    }

    /* Keep hover movement on mobile */
    .pressure-washing-page .pressure-process-step:hover {
        transform: translateY(-5px);
    }

}

@media only screen and (max-width: 400px) {

    .pressure-washing-page .pressure-process-steps {
        gap: 15px;
        margin-top: 30px;
    }

    .pressure-washing-page .pressure-process-step,
    .pressure-washing-page .pressure-process-step:nth-child(1),
    .pressure-washing-page .pressure-process-step:nth-child(2),
    .pressure-washing-page .pressure-process-step:nth-child(3),
    .pressure-washing-page .pressure-process-step:nth-child(4),
    .pressure-washing-page .pressure-process-step:nth-child(5) {
        padding: 22px 16px;

        gap: 13px;
    }

    .pressure-washing-page .pressure-step-num {
        width: 36px;
        height: 36px;

        flex: 0 0 36px;

        font-size: 14px;
    }

    .pressure-washing-page .pressure-process-step h3 {
        font-size: 15px;
    }

    .pressure-washing-page .pressure-process-step p {
        font-size: 13.5px;
        line-height: 1.6;
    }

}

/* ---------- CTA buttons: page-only spacing tweak for the shared
   .tj-primary-btn.tj-hover-btn component. No override of its own rules. */
.pressure-washing-page .pressure-cta-btn {
    margin-top: 6px;
}


/* ---------- Final CTA (reuses shared .cta-box / .btn-cta-primary system) ---------- */
.pressure-washing-page .pressure-final-cta {
    padding: 60px 0 90px;
}

.pressure-washing-page .pressure-cta-inner {
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
}

.pressure-washing-page .pressure-cta-inner h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 16px;
}

.pressure-washing-page .pressure-cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 12px;
}

.pressure-washing-page .pressure-cta-inner .pressure-cta-buttons {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 575px) {
    .pressure-washing-page .pressure-cta-inner {
        padding: 40px 24px;
    }

    .pressure-washing-page .pressure-cta-inner h2 {
        font-size: 24px;
    }

    .pressure-washing-page .pressure-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pressure-washing-page .pressure-card-grid
    .service-card-modern:last-child {
        grid-column: auto;
        max-width: none;
    }

    .pressure-washing-page .pressure-card-grid .service-card-modern {
        min-height: 160px;
        padding: 25px 20px;
    }

    .pressure-washing-page .pressure-card-grid
    .service-card-modern:last-child {
        grid-column: auto;
    }

}


/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .pressure-washing-page .pressure-page-image img,
    .pressure-washing-page .pressure-chip,
    .pressure-washing-page .pressure-surface-card,
    .pressure-washing-page .pressure-process-step {
        transition: none;
    }

    .pressure-washing-page .pressure-page-image:hover img,
    .pressure-washing-page .pressure-chip:hover,
    .pressure-washing-page .pressure-surface-card:hover,
    .pressure-washing-page .pressure-process-step:hover {
        transform: none;
    }
}
/* =========================================================
   PROFESSIONAL PRESSURE CLEANING SERVICES CARD
========================================================= */

.pressure-washing-page .pressure-service-card {
    display: flex;
    width: 100%;
    background: #077cea;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.10);
}

.pressure-washing-page .pressure-service-content {
    flex: 1.15;
    padding: 60px;
    color: #ffffff;
}

.pressure-washing-page .pressure-service-content .pressure-section-tag {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.pressure-washing-page .pressure-service-content .pressure-section-title {
    color: #ffffff;
    margin-bottom: 22px;
}

.pressure-washing-page .pressure-service-content p {
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 17px;
}

.pressure-washing-page .pressure-service-content p:last-child {
    margin-bottom: 0;
}

.pressure-washing-page .pressure-service-content strong {
    color: #ffffff;
}


/* RIGHT SIDE */

.pressure-washing-page .pressure-service-points {
    flex: 0.85;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    padding: 30px;
    background: #eaf5ff;
}

.pressure-washing-page .pressure-service-points div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 190px;
    padding: 25px;
    border-bottom: 1px solid #000000;
}

.pressure-washing-page .pressure-service-points div:nth-child(odd) {
    border-right: 1px solid #000000;
}

.pressure-washing-page .pressure-service-points div:nth-child(3),
.pressure-washing-page .pressure-service-points div:nth-child(4) {
    border-bottom: 0;
}

.pressure-washing-page .pressure-service-points strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #077cea;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.pressure-washing-page .pressure-service-points span {
    display: block;
    margin-bottom: 8px;
    color: #0a2540;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.pressure-washing-page .pressure-service-points p {
    margin: 0;
    color: #55697d;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   TABLET
========================================================= */

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .pressure-washing-page .pressure-service-content {
        padding: 45px;
    }

    .pressure-washing-page .pressure-service-points {
        padding: 20px;
    }

    .pressure-washing-page .pressure-service-points div {
        padding: 20px;
        min-height: 180px;
    }

    .pressure-washing-page .pressure-card-grid {
    grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    .pressure-washing-page .pressure-service-card {
        flex-direction: column;
    }

    .pressure-washing-page .pressure-service-content {
        padding: 40px 25px;
    }

    .pressure-washing-page .pressure-service-content .pressure-section-title {
        font-size: 26px;
    }

    .pressure-washing-page .pressure-service-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .pressure-washing-page .pressure-service-points {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .pressure-washing-page .pressure-service-points div,
    .pressure-washing-page .pressure-service-points div:nth-child(odd) {
        min-height: auto;
        padding: 22px;
        border-right: 0;
        border-bottom: 1px solid #d5e7f7;
    }

    .pressure-washing-page .pressure-service-points div:last-child {
        border-bottom: 0;
    }

    .pressure-washing-page .pressure-chip-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 25px auto;
    }

}




/* =========================================================
   COMMERCIAL PRESSURE CLEANING — SECTION SEPARATION
========================================================= */

.pressure-washing-page .pressure-section--tint {
    padding-bottom: 90px;
}

.pressure-washing-page .pressure-section--white {
    padding-top: 90px;
}

/* Property Types heading */
.pressure-washing-page .pressure-section--white .pressure-section-header {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

/* Property cards */
.pressure-washing-page .pressure-section--white .pressure-card-grid {
    margin-top: 0;
}

/* Bottom paragraphs */
.pressure-washing-page .pressure-property-copy {
    max-width: 900px;
    margin: 40px auto 0;
}

.pressure-washing-page .pressure-property-copy p {
    text-align: justify;
}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    .pressure-washing-page .pressure-section--tint {
        padding-bottom: 55px;
    }

    .pressure-washing-page .pressure-section--white {
        padding-top: 55px;
    }

    .pressure-washing-page .pressure-section--white .pressure-section-header {
        margin-bottom: 30px;
    }

    .pressure-washing-page .pressure-property-copy {
        margin-top: 30px;
    }

}


/* =========================================================
   WHAT PRESSURE CLEANING CAN HELP REMOVE
========================================================= */

.pressure-washing-page .pressure-section--tint .pressure-chip-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 35px auto 40px;
    gap: 16px;
}

/* Keep all checklist cards equal and aligned */
.pressure-washing-page .pressure-section--tint .pressure-chip {
    min-height: 62px;
    justify-content: flex-start;
}

/* Supporting content below the cards */
.pressure-washing-page .pressure-section--tint .pressure-copy {
    max-width: 900px !important;
    margin: 0 auto !important;
}

.pressure-washing-page .pressure-section--tint .pressure-copy p {
    text-align: justify;
}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    .pressure-washing-page .pressure-section--tint .pressure-chip-grid {
        grid-template-columns: 1fr;
        margin: 25px auto 30px;
        gap: 12px;
    }

    .pressure-washing-page .pressure-section--tint .pressure-chip-grid li:last-child {
        grid-column: auto;
    }

}


/* =========================================================
   WHY CHOOSE KV CLEANING
========================================================= */

/* Top image + heading alignment */
.pressure-washing-page .pressure-split--reverse {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 65px;
    align-items: center;
    margin-bottom: 55px;
}

/* Image placement */
.pressure-washing-page .pressure-split--reverse .pressure-split-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pressure-washing-page .pressure-split--reverse .pressure-page-image {
    width: 100%;
    max-width: 560px;
}

/* Content alignment */
.pressure-washing-page .pressure-split--reverse .pressure-split-content {
    display: flex;
    align-items: center;
}

.pressure-washing-page .pressure-split--reverse
.pressure-section-header--left {
    width: 100%;
}

/* =========================================================
   WHY CHOOSE CARDS — 2 x 2
========================================================= */

.pressure-washing-page .pressure-card-grid.pressure-card-grid--four {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 1rem auto;
}

.pressure-washing-page .pressure-card-grid.pressure-card-grid--four .service-card-modern {
    width: 100%;
    min-width: 0;
    min-height: 250px;
    box-sizing: border-box;
}

/* Card */
.pressure-washing-page .pressure-card-grid--four .service-card-modern {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 250px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.06);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Blue top accent */
.pressure-washing-page .pressure-card-grid--four
.service-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 4px;
    background: #077cea;
}

/* Icon */
.pressure-washing-page .pressure-card-grid--four .service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.10);
    color: #077cea;
    font-size: 20px;
}

/* Heading */
.pressure-washing-page .pressure-card-grid--four .service-title {
    margin: 0 0 12px;
    color: #0a2540;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}

/* Paragraph */
.pressure-washing-page .pressure-card-grid--four .service-content {
    margin-top: auto;
}

.pressure-washing-page .pressure-card-grid--four .service-content p {
    margin: 0;
    color: #55697d;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
}

/* Hover */
.pressure-washing-page .pressure-card-grid--four
.service-card-modern:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 18px 40px rgba(10, 37, 64, 0.12);
}

.pressure-washing-page .pressure-card-grid--four
.service-card-modern:hover .service-icon {
    background: #077cea;
    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media only screen and (max-width: 991px) {

    .pressure-washing-page .pressure-split--reverse {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .pressure-washing-page .pressure-split--reverse
    .pressure-split-image {
        order: 1;
    }

    .pressure-washing-page .pressure-split--reverse
    .pressure-split-content {
        order: 2;
    }

    .pressure-washing-page .pressure-split--reverse
    .pressure-page-image {
        max-width: 700px;
        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 575px) {

    .pressure-washing-page .pressure-card-grid--four {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .pressure-washing-page .pressure-card-grid--four
    .service-card-modern {
        min-height: auto;
        padding: 25px 22px;
    }

    .pressure-washing-page .pressure-card-grid--four
    .service-title {
        font-size: 18px;
    }

    .pressure-washing-page .pressure-card-grid--four
    .service-content p {
        font-size: 14.5px;
    }

}


/* =========================================================
   PRESSURE CLEANING FAQ
========================================================= */

.pressure-faq-section {
    background: #dcf0ff;
}

.pressure-faq-section .container {
    width: 100%;
}


/* =========================================================
   FAQ HEADER
========================================================= */

.pressure-faq-header {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
}

.pressure-faq-header .pressure-section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.pressure-faq-header h2 {
    margin: 0 0 15px;

    color: #0a2540;

    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}

.pressure-faq-header p {
    max-width: 760px;
    margin: 0 auto;

    color: #55697d;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   FAQ LIST
========================================================= */

.pressure-faq-list {
    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* =========================================================
   FAQ CARD
========================================================= */

.pressure-faq-list details {
    width: 100%;

    overflow: hidden;

    border: 1px solid #e1ebf4;
    border-radius: 12px;

    background: #ffffff;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


/* =========================================================
   QUESTION
========================================================= */

.pressure-faq-list summary {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 24px 28px;

    cursor: pointer;
    list-style: none;

    color: #0a2540;

    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;

    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}


/* Remove default marker */

.pressure-faq-list summary::-webkit-details-marker {
    display: none;
}

.pressure-faq-list summary::marker {
    display: none;
}


/* =========================================================
   PLUS ICON
========================================================= */

.pressure-faq-list summary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    border: 1px solid #077cea;
    border-radius: 50%;

    background: #ffffff;
    color: #077cea;

    font-size: 20px;
    font-weight: 400;
    line-height: 1;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


/* =========================================================
   OPEN FAQ CARD
========================================================= */

.pressure-faq-list details[open] {
    background: #077cea;
    border-color: #077cea;
}

.pressure-faq-list details[open] summary {
    color: #ffffff;
    background: #077cea;
}

.pressure-faq-list details[open] summary span {
    transform: rotate(45deg);

    background: #ffffff;
    border-color: #ffffff;
    color: #077cea;
}


.pressure-faq-answer {
    height: 0;
    overflow: hidden;

    background: transparent;
    color: #ffffff;

    transition: height 0.3s ease;
}

.pressure-faq-list .pressure-faq-answer {
    cursor: pointer;
}

.pressure-faq-answer-inner {
    padding: 0 28px 25px;
}

.pressure-faq-answer p {
    max-width: 850px;

    margin: 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   HOVER - CLOSED FAQ
========================================================= */

@media (hover: hover) and (pointer: fine) {

    .pressure-faq-list details:not([open]):hover {
        border-color: #077cea;
    }

    .pressure-faq-list details:not([open]) summary:hover {
        color: #077cea;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .pressure-faq-header {
        margin-bottom: 32px;
    }

    .pressure-faq-header h2 {
        font-size: 30px;
    }

    .pressure-faq-list {
        max-width: 850px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .pressure-faq-header {
        margin-bottom: 25px;
    }

    .pressure-faq-header h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .pressure-faq-header p {
        font-size: 14px;
        line-height: 1.65;
    }

    .pressure-faq-list {
        gap: 10px;
    }

    .pressure-faq-list details {
        border-radius: 10px;
    }

    .pressure-faq-list summary {
        gap: 15px;

        padding: 20px;

        font-size: 15px;
        line-height: 1.45;
    }

    .pressure-faq-list summary span {
        width: 30px;
        height: 30px;

        flex: 0 0 30px;

        font-size: 18px;
    }

    .pressure-faq-answer-inner {
        padding: 0 20px 22px;
    }

    .pressure-faq-answer p {
        font-size: 14px;
        line-height: 1.65;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .pressure-faq-header h2 {
        font-size: 23px;
    }

    .pressure-faq-list summary {
        gap: 10px;
        padding: 17px 15px;

        font-size: 14px;
    }

    .pressure-faq-list summary span {
        width: 28px;
        height: 28px;

        flex: 0 0 28px;

        font-size: 17px;
    }

    .pressure-faq-answer-inner {
        padding: 0 15px 20px;
    }

    .pressure-faq-answer p {
        font-size: 13.5px;
        line-height: 1.65;
    }

}


/* =========================================================
   FINAL CTA
========================================================= */

.pressure-washing-page .pressure-final-cta {
    padding: 80px 0;
    background: #f5f9fc;
}

.pressure-washing-page .pressure-cta-inner {
    position: relative;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 65px 75px;

    background: #077cea;
    border-radius: 20px;

    overflow: hidden;

    text-align: center;
}


/* Decorative circles */

.pressure-washing-page .pressure-cta-inner::before {
    content: "";
    position: absolute;

    width: 240px;
    height: 240px;

    top: -120px;
    left: -100px;

    border-radius: 50%;

    background: rgba(7, 124, 234, 0.18);
}

.pressure-washing-page .pressure-cta-inner::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    bottom: -170px;

    border-radius: 50%;

    background: rgba(7, 124, 234, 0.20);
}


/* Content */

.pressure-washing-page .pressure-cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: 0 auto;
}

.pressure-washing-page .pressure-cta-content
.pressure-section-tag {
    display: inline-block;

    margin-bottom: 16px;

    color: #ffffff;
}

.pressure-washing-page .pressure-cta-content h2 {
    margin: 0 auto 20px;

    color: #ffffff;

    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.pressure-washing-page .pressure-cta-content p {
    max-width: 760px;

    margin: 0 auto 12px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.75;
}


/* Button */

.pressure-washing-page .pressure-cta-buttons {
    margin-top: 28px;
}

.pressure-washing-page .pressure-cta-buttons
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 28px;

    border: 1px solid #ffffff;
    border-radius: 4px;

    background: #ffffff;
    color: #0a2540;

    font-size: 15px;
    font-weight: 700;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.pressure-washing-page .pressure-cta-buttons
.btn-cta-primary:hover {
    background: #077cea;
    border-color: #077cea;
    color: #ffffff;

    transform: translateY(-4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .pressure-washing-page .pressure-final-cta {
        padding: 65px 0;
    }

    .pressure-washing-page .pressure-cta-inner {
        padding: 50px 45px;
    }

    .pressure-washing-page .pressure-cta-content h2 {
        font-size: 32px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .pressure-washing-page .pressure-final-cta {
        padding: 45px 0;
    }

    .pressure-washing-page .pressure-cta-inner {
        padding: 40px 22px;
        border-radius: 15px;
    }

    .pressure-washing-page .pressure-cta-content h2 {
        font-size: 27px;
        line-height: 1.25;
    }

    .pressure-washing-page .pressure-cta-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .pressure-washing-page .pressure-cta-buttons {
        margin-top: 22px;
    }

    .pressure-washing-page .pressure-cta-buttons
    .btn-cta-primary {
        width: 100%;
        padding: 0 18px;
    }

}

@media (max-width: 767px) {
    .pressure-washing-page .pressure-hero-cta-row {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .pressure-washing-page .pressure-cta-btn {
        margin-left: auto;
        margin-right: auto;
    }
}


@media only screen and (max-width: 767px) {

    .pressure-washing-page .pressure-process-step {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr);
        align-items: center;
        column-gap: 16px;
    }

    .pressure-washing-page .pressure-step-num {
        width: 40px;
        height: 40px;

        margin: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        align-self: center;
    }

    .pressure-washing-page .pressure-process-step > div:last-child {
        min-width: 0;
    }

}


@media only screen and (max-width: 767px) {

    .pressure-washing-page .pressure-card-grid.pressure-card-grid--four {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;

        width: 100%;
        max-width: 100%;

        margin: 0 auto;
    }

    .pressure-washing-page .pressure-card-grid.pressure-card-grid--four .service-card-modern {
        width: 100%;
        min-width: 0;
        min-height: auto;

        margin: 0;
        box-sizing: border-box;
    }

}
@media only screen and (max-width: 767px) {

    .pressure-washing-page .pressure-card-grid.pressure-card-grid--four {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;

        width: 100%;
        max-width: 100%;

        margin: 0 auto;
    }

    .pressure-washing-page .pressure-card-grid.pressure-card-grid--four .service-card-modern {
        width: 100%;
        min-width: 0;
        min-height: auto;

        margin: 0;
        box-sizing: border-box;
    }

}
