/* ==========================================================================
   BATHROOM CLEANING SYDNEY — MAIN CONTENT STYLES
   Scope: .bathroom-cleaning-page ONLY.
   Ported from the KV Cleaning Showroom Cleaning Sydney page component
   system (feature lists, icon card grids, why-grid, FAQ, final CTA) and
   renamed for this page. No body/html/global element selectors. Existing
   KV Cleaning colours only: #077cea (theme primary), #1a1a2e (headings),
   #2d3748 / #4a4a5e (body text), #dcf0ff (light accent), #eef2f6 / #d0d7de
   (borders). White / #dcf0ff alternating section backgrounds.
   ========================================================================== */

.bathroom-cleaning-page p {
    text-align: justify;
}

/* ==========================================================================
   01. CONTAINER
   ========================================================================== */

.bathroom-cleaning-page .bathroom-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.bathroom-cleaning-page .bathroom-container--narrow {
    max-width: 1120px;
}

.bathroom-cleaning-page .bathroom-container--split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.bathroom-cleaning-page .bathroom-text-center {
    text-align: center;
}

/* ==========================================================================
   02. SECTION BASE / BACKGROUNDS
   ========================================================================== */

.bathroom-cleaning-page .bathroom-section {
    position: relative;
    width: 100%;
    padding: 78px 0;
    overflow: hidden;
}

.bathroom-cleaning-page .bathroom-section--white {
    background-color: #ffffff;
}

.bathroom-cleaning-page .bathroom-section--blue {
    background-color: #dcf0ff;
}

.bathroom-cleaning-page .bathroom-section--centered h2,
.bathroom-cleaning-page .bathroom-section--centered .bathroom-lead,
.bathroom-cleaning-page .bathroom-section--centered .bathroom-copy p {
    text-align: center;
}

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */

.bathroom-cleaning-page h1,
.bathroom-cleaning-page h2,
.bathroom-cleaning-page h3 {
    color: #1a1a2e;
}

.bathroom-cleaning-page h1 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 18px;
}

.bathroom-cleaning-page h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 22px;
}

.bathroom-cleaning-page h3 {
    font-size: 19px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 10px;
}

.bathroom-cleaning-page p {
    color: #2d3748;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 20px;
}

.bathroom-cleaning-page strong {
    color: #1a1a2e;
}

.bathroom-cleaning-page .bathroom-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #077cea;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bathroom-cleaning-page .bathroom-lead {
    color: #4a4a5e;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* .bathroom-cleaning-page .bathroom-copy {
    max-width: 900px;
} */

.bathroom-cleaning-page .bathroom-copy p:last-child {
    margin-bottom: 20px;
}

.bathroom-cleaning-page .bathroom-section-heading {
    max-width: 920px;
    margin-bottom: 42px;
}

/* ==========================================================================
   04. LISTS — PLAIN
   ========================================================================== */

.bathroom-cleaning-page .bathroom-list {
    list-style: circle #077cea;
    margin: 0;
}

.bathroom-cleaning-page .bathroom-list li {
    position: relative;
    color: #2d3748;
    font-size: 15.5px;
    line-height: 1.7;
    padding-left: 12px;
    margin-bottom: 10px;
}

.bathroom-cleaning-page .bathroom-list--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 4px;
}

/* ==========================================================================
   05. FEATURE LIST (2-col bordered rows with icon)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-list.bathroom-list--features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bathroom-cleaning-page .bathroom-list--features li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 86px;
    margin: 0;
    padding: 18px 30px 18px 0;
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    border-bottom: 1px solid rgba(26, 26, 46, 0.10);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.bathroom-cleaning-page .bathroom-list--features li:nth-child(odd) {
    padding-right: 38px;
    border-right: 1px solid rgba(26, 26, 46, 0.10);
}

.bathroom-cleaning-page .bathroom-list--features li:nth-child(even) {
    padding-left: 38px;
}

.bathroom-cleaning-page .bathroom-feature-icon {
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-right: 18px;
    border: 1px solid rgba(7, 124, 234, 0.25);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.75);
    color: #077cea;
    font-size: 17px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(7, 124, 234, 0.06);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.bathroom-cleaning-page .bathroom-feature-icon i {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-align: center;
}

.bathroom-cleaning-page .bathroom-feature-text {
    display: block;
    flex: 1;
}

.bathroom-cleaning-page .bathroom-list--features li:hover {
    color: #077cea;
    padding-left: 8px;
}

.bathroom-cleaning-page .bathroom-list--features li:nth-child(even):hover {
    padding-left: 46px;
}

.bathroom-cleaning-page .bathroom-list--features li:hover .bathroom-feature-icon {
    background-color: #077cea;
    border-color: #077cea;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(7, 124, 234, 0.18);
}

.bathroom-cleaning-page .bathroom-feature-footer {
    max-width: 760px;
    margin-top: 34px;
}

.bathroom-cleaning-page .bathroom-feature-footer p {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .bathroom-cleaning-page .bathroom-list.bathroom-list--features {
        grid-template-columns: 1fr;
    }

    .bathroom-cleaning-page .bathroom-list--features li,
    .bathroom-cleaning-page .bathroom-list--features li:nth-child(odd),
    .bathroom-cleaning-page .bathroom-list--features li:nth-child(even) {
        min-height: 76px;
        padding: 15px 0;
        border-right: none;
        border-bottom: 1px solid rgba(26, 26, 46, 0.10);
    }

    .bathroom-cleaning-page .bathroom-list--features li:last-child {
        border-bottom: none;
    }
}

@media only screen and (max-width: 575px) {
    .bathroom-cleaning-page .bathroom-feature-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        margin-right: 14px;
        font-size: 15px;
    }

    .bathroom-cleaning-page .bathroom-feature-text {
        font-size: 15px;
    }
}

/* ==========================================================================
   06. ICON CARD GRID (3 + 2 layout — "What Our Bathroom Cleaning Covers")
   ========================================================================== */

.bathroom-cleaning-page .bathroom-card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.bathroom-cleaning-page .bathroom-card-grid .bathroom-card:nth-child(1),
.bathroom-cleaning-page .bathroom-card-grid .bathroom-card:nth-child(2),
.bathroom-cleaning-page .bathroom-card-grid .bathroom-card:nth-child(3) {
    grid-column: span 2;
}

.bathroom-cleaning-page .bathroom-card-grid .bathroom-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.bathroom-cleaning-page .bathroom-card-grid .bathroom-card:nth-child(5) {
    grid-column: 4 / span 2;
}

@media only screen and (max-width: 991px) {
    .bathroom-cleaning-page .bathroom-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bathroom-cleaning-page .bathroom-card-grid .bathroom-card {
        grid-column: auto !important;
    }
}

@media only screen and (max-width: 575px) {
    .bathroom-cleaning-page .bathroom-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.bathroom-cleaning-page .bathroom-card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    padding: 26px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bathroom-cleaning-page .bathroom-card:hover {
    transform: translateY(-5px);
    border-color: #077cea;
    box-shadow: 0 12px 30px rgba(7, 124, 234, 0.10);
}

.bathroom-cleaning-page .bathroom-card h3 {
    margin-bottom: 12px;
}

.bathroom-cleaning-page .bathroom-card p:last-child {
    margin-bottom: 0;
}

.bathroom-cleaning-page .bathroom-card--plain {
    border-left: 3px solid #077cea;
    border-radius: 6px;
}

.bathroom-cleaning-page .bathroom-area-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bathroom-cleaning-page .bathroom-area-icon--a { background-color: #eaf5ff; color: #077cea; }
.bathroom-cleaning-page .bathroom-area-icon--b { background-color: #eef8f1; color: #24945a; }
.bathroom-cleaning-page .bathroom-area-icon--c { background-color: #fff4e8; color: #e88a24; }
.bathroom-cleaning-page .bathroom-area-icon--d { background-color: #f3edff; color: #7651c9; }
.bathroom-cleaning-page .bathroom-area-icon--e { background-color: #fff0f0; color: #d65353; }

.bathroom-cleaning-page .bathroom-card .bathroom-area-icon + h3 {
    text-align: center;
    margin-bottom: 14px;
}

.bathroom-cleaning-page .bathroom-card:hover .bathroom-area-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(26, 26, 46, 0.10);
}

@media only screen and (max-width: 575px) {
    .bathroom-cleaning-page .bathroom-area-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
        border-radius: 15px;
        font-size: 24px;
    }
}

/* ==========================================================================
   07. PLAIN CARD GRID (Commercial Washroom subtypes / Common Dirt subtypes)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-plain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

/* ==========================================================================
   08. ACCENT-LINE SIMPLE SECTION (plain paragraph sections)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-section--accent .bathroom-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 70px;
    padding-right: 70px;
}

.bathroom-cleaning-page .bathroom-section--accent .bathroom-container::before {
    content: "";
    position: absolute;
    left: 38px;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background-color: #077cea;
    border-radius: 3px;
}

.bathroom-cleaning-page .bathroom-section--accent h2 {
    position: relative;
    margin-bottom: 24px;
}

.bathroom-cleaning-page .bathroom-section--accent .bathroom-copy p {
    margin-bottom: 20px;
}

.bathroom-cleaning-page .bathroom-section--accent .bathroom-copy p:last-child {
    margin-bottom: 0;
}

.bathroom-cleaning-page .bathroom-section--accent .bathroom-copy p + p {
    padding-top: 20px;
    border-top: 1px solid #eef2f6;
}

@media only screen and (max-width: 767px) {
    .bathroom-cleaning-page .bathroom-section--accent .bathroom-container {
        padding-left: 38px;
        padding-right: 24px;
    }

    .bathroom-cleaning-page .bathroom-section--accent .bathroom-container::before {
        left: 18px;
    }
}

/* ==========================================================================
   09. BAR LIST (2-col vertical-bar marker — Deep Bathroom Cleaning)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-bar-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 60px;
    row-gap: 0;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.bathroom-cleaning-page .bathroom-bar-list li {
    position: relative;
    margin: 0;
    padding: 14px 0 14px 20px;
    color: #1a1a2e;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.5;
    border-bottom: 1px solid rgba(26, 26, 46, 0.10);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.bathroom-cleaning-page .bathroom-bar-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 4px;
    height: 20px;
    border-radius: 3px;
    background-color: #077cea;
    transition: height 0.25s ease, transform 0.25s ease;
}

.bathroom-cleaning-page .bathroom-bar-list li:hover {
    color: #077cea;
    padding-left: 24px;
}

.bathroom-cleaning-page .bathroom-bar-list li:hover::before {
    height: 26px;
    transform: translateY(-3px);
}

.bathroom-cleaning-page .bathroom-bar-list li:last-child {
    border-bottom: none;
}

@media only screen and (max-width: 767px) {
    .bathroom-cleaning-page .bathroom-bar-list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}

/* ==========================================================================
   10. DOT LIST — TWO COLUMN (small dot marker — Areas We Service)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-dot-list-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 38px;
    row-gap: 0;
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
}

.bathroom-cleaning-page .bathroom-dot-list-two li {
    position: relative;
    margin: 0;
    padding: 11px 0 11px 18px;
    color: #2d3748;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(26, 26, 46, 0.10);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.bathroom-cleaning-page .bathroom-dot-list-two li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #077cea;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.bathroom-cleaning-page .bathroom-dot-list-two li:hover {
    padding-left: 22px;
    color: #077cea;
}

.bathroom-cleaning-page .bathroom-dot-list-two li:hover::before {
    transform: scale(1.35);
}

.bathroom-cleaning-page .bathroom-dot-list-two li:last-child {
    border-bottom: none;
}

@media only screen and (max-width: 575px) {
    .bathroom-cleaning-page .bathroom-dot-list-two {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}

/* ==========================================================================
   11. DOT LIST — THREE COLUMN, CENTRED (Bathroom Cleaning Around Operations)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-section--operations {
    text-align: center;
}

.bathroom-cleaning-page .bathroom-operations-heading,
.bathroom-cleaning-page .bathroom-operations-content,
.bathroom-cleaning-page .bathroom-operations-list,
.bathroom-cleaning-page .bathroom-operations-footer {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bathroom-cleaning-page .bathroom-operations-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 34px;
    margin: 24px auto 30px;
    padding: 0;
    list-style: none;
    text-align: left;
}

.bathroom-cleaning-page .bathroom-operations-list li {
    position: relative;
    margin: 0;
    padding: 15px 8px 15px 18px;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    border-bottom: 1px solid rgba(26, 26, 46, 0.10);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.bathroom-cleaning-page .bathroom-operations-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #077cea;
    transition: transform 0.25s ease;
}

.bathroom-cleaning-page .bathroom-operations-list li:hover {
    color: #077cea;
    padding-left: 22px;
}

.bathroom-cleaning-page .bathroom-operations-list li:hover::before {
    transform: scale(1.5);
}

@media only screen and (max-width: 991px) {
    .bathroom-cleaning-page .bathroom-operations-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .bathroom-cleaning-page .bathroom-operations-list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}

/* ==========================================================================
   12. ICON GRID BOXES (How Often Should Commercial Bathrooms Be Cleaned)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 30px 0 32px;
    padding: 0;
    list-style: none;
}

.bathroom-cleaning-page .bathroom-icon-grid li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    margin: 0;
    padding: 14px 15px;
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    box-shadow: 0 4px 14px rgba(26, 26, 46, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.bathroom-cleaning-page .bathroom-icon-grid-icon {
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 7px;
    background-color: #dcf0ff;
    color: #077cea;
    font-size: 16px;
}

.bathroom-cleaning-page .bathroom-icon-grid li:hover {
    transform: translateY(-3px);
    border-color: rgba(7, 124, 234, 0.25);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.09);
}

.bathroom-cleaning-page .bathroom-icon-grid li:hover .bathroom-icon-grid-icon {
    background-color: #077cea;
    color: #ffffff;
}

@media only screen and (max-width: 991px) {
    .bathroom-cleaning-page .bathroom-icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 575px) {
    .bathroom-cleaning-page .bathroom-icon-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ==========================================================================
   13. PROCESS SECTION
   ========================================================================== */

.bathroom-cleaning-page .bathroom-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.bathroom-cleaning-page .bathroom-process-step {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    padding: 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bathroom-cleaning-page .bathroom-process-step:hover {
    transform: translateY(-5px);
    border-color: #077cea;
    box-shadow: 0 12px 30px rgba(7, 124, 234, 0.09);
}

.bathroom-cleaning-page .bathroom-process-num {
    display: block;
    color: #077cea;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.bathroom-cleaning-page .bathroom-process-step p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .bathroom-cleaning-page .bathroom-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 575px) {
    .bathroom-cleaning-page .bathroom-process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   14. BOUNDARY CARD (What Is Not Automatically Included — visual emphasis)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-boundary-card {
    max-width: 1000px;
    margin: 8px auto 0;
    padding: 36px 40px;
    background-color: #077cea;
    border-radius: 12px;
    color: #ffffff;
}

.bathroom-cleaning-page .bathroom-boundary-card h3,
.bathroom-cleaning-page .bathroom-boundary-card p {
    color: #ffffff;
}

.bathroom-cleaning-page .bathroom-boundary-card .bathroom-dot-list-two {
    margin: 18px 0 20px;
}

.bathroom-cleaning-page .bathroom-boundary-card .bathroom-dot-list-two li {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.22);
}

.bathroom-cleaning-page .bathroom-boundary-card .bathroom-dot-list-two li::before {
    background-color: #ffffff;
}

.bathroom-cleaning-page .bathroom-boundary-card .bathroom-dot-list-two li:hover {
    color: #ffffff;
}

@media only screen and (max-width: 575px) {
    .bathroom-cleaning-page .bathroom-boundary-card {
        padding: 26px 22px;
    }
}

/* ==========================================================================
   15. WHY CHOOSE (image + zig-zag icon grid)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-why-layout {
    display: grid;
    grid-template-columns: .90fr 1fr;
    gap: 44px;
    align-items: center;
    max-width: 1260px;
    margin: 0 auto;
}

.bathroom-cleaning-page .bathroom-why-image {
    width: 100%;
    overflow: hidden;
    border-radius: 9px;
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #d0d7de;
    border-radius: 14px;
    box-shadow: 0 16px 35px rgba(26, 26, 46, 0.12);
}

.bathroom-cleaning-page .bathroom-why-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 9px;
    transition: transform 0.4s ease;
}



.bathroom-cleaning-page .bathroom-why-image:hover img {
    transform: scale(1.03);
}

.bathroom-cleaning-page .bathroom-why-content {
    max-width: 680px;
}

.bathroom-cleaning-page .bathroom-why-intro {
    max-width: 620px;
    margin-bottom: 32px;
}

.bathroom-cleaning-page .bathroom-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.bathroom-cleaning-page .bathroom-why-item {
    position: relative;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    box-shadow: 0 5px 16px rgba(26, 26, 46, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bathroom-cleaning-page .bathroom-why-item:nth-child(2),
.bathroom-cleaning-page .bathroom-why-item:nth-child(4) {
    transform: translateY(122px);
}

.bathroom-cleaning-page .bathroom-why-item:nth-child(1):hover,
.bathroom-cleaning-page .bathroom-why-item:nth-child(3):hover,
.bathroom-cleaning-page .bathroom-why-item:nth-child(5):hover {
    transform: translateY(-5px);
}

.bathroom-cleaning-page .bathroom-why-item:nth-child(2):hover,
.bathroom-cleaning-page .bathroom-why-item:nth-child(4):hover {
    transform: translateY(117px);
}

.bathroom-cleaning-page .bathroom-why-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #ffffff;
    font-size: 26px;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bathroom-cleaning-page .bathroom-why-item:hover .bathroom-why-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.bathroom-cleaning-page .bathroom-why-item h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.bathroom-cleaning-page .bathroom-why-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

@media only screen and (max-width: 991px) {
    .bathroom-cleaning-page .bathroom-why-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .bathroom-cleaning-page .bathroom-why-image {
        max-width: 650px;
        margin: 0 auto;
    }

    .bathroom-cleaning-page .bathroom-why-content {
        max-width: 100%;
    }

    .bathroom-cleaning-page .bathroom-why-image img {
        height: 450px;
    }
}

@media only screen and (max-width: 767px) {
    .bathroom-cleaning-page .bathroom-why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bathroom-cleaning-page .bathroom-why-item:nth-child(2),
    .bathroom-cleaning-page .bathroom-why-item:nth-child(4) {
        transform: none;
    }

    .bathroom-cleaning-page .bathroom-why-item:hover {
        transform: translateY(-3px) !important;
    }

    .bathroom-cleaning-page .bathroom-why-image img {
        height: 380px;
    }
}

@media only screen and (max-width: 575px) {
    .bathroom-cleaning-page .bathroom-why-image img {
        height: 320px;
    }
}

/* ==========================================================================
   16. FAQ (native details/summary, JS-enhanced single-open accordion)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.bathroom-cleaning-page .bathroom-faq-item {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    border: 1px solid rgba(26, 26, 46, 0.10);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(26, 26, 46, 0.04);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bathroom-cleaning-page .bathroom-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 22px 24px;
    color: #1a1a2e;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}

.bathroom-cleaning-page .bathroom-faq-item summary::-webkit-details-marker {
    display: none;
}

.bathroom-cleaning-page .bathroom-faq-question {
    flex: 1;
    padding-right: 20px;
}

.bathroom-cleaning-page .bathroom-faq-icon {
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(7, 124, 234, 0.25);
    border-radius: 50%;
    color: #077cea;
    font-size: 22px;
    line-height: 1;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.bathroom-cleaning-page .bathroom-faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    color: #555b66;
    font-size: 15px;
    line-height: 1.7;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: left;
}

.bathroom-cleaning-page .bathroom-faq-item.is-open {
    background-color: #077cea;
    border-color: #077cea;
    box-shadow: 0 8px 24px rgba(7, 124, 234, 0.20);
}

.bathroom-cleaning-page .bathroom-faq-item.is-open summary,
.bathroom-cleaning-page .bathroom-faq-item.is-open p {
    color: #ffffff;
}

.bathroom-cleaning-page .bathroom-faq-item.is-open .bathroom-faq-icon {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #077cea;
}

.bathroom-cleaning-page .bathroom-faq-item:not(.is-open):hover {
    border-color: rgba(7, 124, 234, 0.30);
    box-shadow: 0 7px 20px rgba(26, 26, 46, 0.07);
}

.bathroom-cleaning-page .bathroom-faq-item:not(.is-open):hover .bathroom-faq-icon {
    background-color: #077cea;
    border-color: #077cea;
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .bathroom-cleaning-page .bathroom-faq-item summary {
        padding: 18px 18px;
        font-size: 15px;
    }

    .bathroom-cleaning-page .bathroom-faq-item p {
        padding: 0 18px 20px;
        font-size: 14px;
        line-height: 1.65;
    }

    .bathroom-cleaning-page .bathroom-faq-icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 19px;
    }

    .bathroom-cleaning-page .bathroom-faq-question {
        padding-right: 14px;
    }
}

/* ==========================================================================
   17. BUTTONS
   ========================================================================== */

.bathroom-cleaning-page .bathroom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #077cea;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    margin-top: 8px;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.bathroom-cleaning-page .bathroom-btn:hover {
    background-color: #0668c4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 124, 234, 0.20);
}

.bathroom-cleaning-page .bathroom-btn--light {
    color: #077cea;
    background: #ffffff;
}

.bathroom-cleaning-page .bathroom-btn--outline {
    background-color: transparent;
    color: #077cea;
    border: 1.5px solid #077cea;
}

.bathroom-cleaning-page .bathroom-btn--outline:hover {
    background-color: #077cea;
    color: #ffffff;
}

.bathroom-cleaning-page a.bathroom-btn--light.tj-primary-btn {
    background-color: #ffffff !important;
    color: #077cea !important;
}

.bathroom-cleaning-page a.bathroom-btn--light.tj-primary-btn span {
    color: #077cea !important;
    align-items: center;
}

.bathroom-cleaning-page a.bathroom-btn--light.tj-primary-btn:hover {
    background-color: #077cea !important;
    color: #ffffff !important;
}

.bathroom-cleaning-page a.bathroom-btn--light.tj-primary-btn:hover span,
.bathroom-cleaning-page a.bathroom-btn--light.tj-primary-btn:hover i {
    color: #ffffff !important;
}

.bathroom-cleaning-page .bathroom-hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}

/* ==========================================================================
   18. FINAL CTA
   ========================================================================== */

.bathroom-cleaning-page .bathroom-final-cta {
    position: relative;
    background-color: #077cea;
    padding: 82px 0;
    overflow: hidden;
}

.bathroom-cleaning-page .bathroom-final-cta::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -140px;
    top: -140px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.bathroom-cleaning-page .bathroom-final-cta::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    left: -95px;
    bottom: -95px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.bathroom-cleaning-page .bathroom-final-cta .bathroom-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.bathroom-cleaning-page .bathroom-final-cta h2,
.bathroom-cleaning-page .bathroom-final-cta p {
    color: #ffffff;
}

.bathroom-cleaning-page .bathroom-final-cta h2 {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.bathroom-cleaning-page .bathroom-final-cta p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 767px) {
    .bathroom-cleaning-page .bathroom-final-cta::before {
        display: none;
    }

    .bathroom-cleaning-page .bathroom-final-cta {
        padding: 64px 0;
    }
}

/* ==========================================================================
   19. HERO
   ========================================================================== */

.bathroom-cleaning-page .bathroom-hero {
    padding: 80px 0;
    background-color: #ffffff;
}

.bathroom-cleaning-page .bathroom-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 60px;
    align-items: center;
}

.bathroom-cleaning-page .bathroom-hero-content {
    max-width: 650px;
}

.bathroom-cleaning-page .bathroom-hero-content h1 {
    margin-bottom: 22px;
}

.bathroom-cleaning-page .bathroom-hero-content p:last-of-type {
    margin-bottom: 24px;
}

.bathroom-cleaning-page .bathroom-hero-media {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    padding: 9px;
    background-color: #ffffff;
    border: 1px solid #d0d7de;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(26, 26, 46, 0.08), 0 3px 8px rgba(26, 26, 46, 0.05);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.bathroom-cleaning-page .bathroom-hero-media img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: center;
    border-radius: 9px;
    transition: transform 0.55s ease;
}

.bathroom-cleaning-page .bathroom-hero-media:hover {
    transform: translateY(-6px);
    border-color: #077cea;
    box-shadow: 0 18px 42px rgba(26, 26, 46, 0.12), 0 6px 16px rgba(7, 124, 234, 0.10);
}

.bathroom-cleaning-page .bathroom-hero-media:hover img {
    transform: scale(1.035);
}

@media only screen and (max-width: 1199px) {
    .bathroom-cleaning-page .bathroom-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
        gap: 45px;
    }

    .bathroom-cleaning-page .bathroom-hero-media {
        max-width: 480px;
    }

    .bathroom-cleaning-page .bathroom-hero-media img {
        height: 440px;
    }
}

@media only screen and (max-width: 991px) {
    .bathroom-cleaning-page .bathroom-hero {
        padding: 60px 0;
    }

    .bathroom-cleaning-page .bathroom-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bathroom-cleaning-page .bathroom-hero-content {
        max-width: 760px;
    }

    .bathroom-cleaning-page .bathroom-hero-media {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .bathroom-cleaning-page .bathroom-hero-media img {
        height: 420px;
    }
}

@media only screen and (max-width: 767px) {
    .bathroom-cleaning-page .bathroom-hero {
        padding: 50px 0;
    }

    .bathroom-cleaning-page .bathroom-hero-media img {
        height: 380px;
    }
}

@media only screen and (max-width: 575px) {
    .bathroom-cleaning-page .bathroom-hero {
        padding: 42px 0;
    }

    .bathroom-cleaning-page .bathroom-hero-media img {
        height: 320px;
    }
}

/* ==========================================================================
   20. IMAGE FRAME (generic, used where a bordered framed image is needed)
   ========================================================================== */

.bathroom-cleaning-page .bathroom-image-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(7, 124, 234, 0.18);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(26, 26, 46, 0.10);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bathroom-cleaning-page .bathroom-image-frame img {
    display: block;
    width: 100%;
    height: 620px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 7px;
    transition: transform 0.45s ease;
}

/* Tablet */
@media (max-width: 1024px) {
    .bathroom-cleaning-page .bathroom-image-frame img {
        height: 500px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .bathroom-cleaning-page .bathroom-image-frame img {
        height: 400px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .bathroom-cleaning-page .bathroom-image-frame img {
        height: 220px;
    }
}

.bathroom-cleaning-page .bathroom-image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(26, 26, 46, 0.14);
}

.bathroom-cleaning-page .bathroom-image-frame:hover img {
    transform: scale(1.025);
}

/* ==========================================================================
   21. RESPONSIVE — GLOBAL PAGE ADJUSTMENTS
   ========================================================================== */

@media only screen and (max-width: 991px) {
    .bathroom-cleaning-page .bathroom-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .bathroom-cleaning-page .bathroom-container--split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bathroom-cleaning-page h1 {
        font-size: 36px;
    }

    .bathroom-cleaning-page h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .bathroom-cleaning-page .bathroom-section {
        padding: 54px 0;
    }

    .bathroom-cleaning-page .bathroom-hero-buttons {
        justify-content: center;
    }

    .bathroom-cleaning-page .bathroom-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .bathroom-cleaning-page h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .bathroom-cleaning-page h2 {
        font-size: 24px;
        line-height: 1.35;
        margin-bottom: 18px;
    }

    .bathroom-cleaning-page h3 {
        font-size: 18px;
    }

    .bathroom-cleaning-page p {
        font-size: 15.5px;
        line-height: 1.72;
    }

    .bathroom-cleaning-page .bathroom-lead {
        font-size: 16px;
    }

    .bathroom-cleaning-page .bathroom-list--grid {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .bathroom-cleaning-page .bathroom-card,
    .bathroom-cleaning-page .bathroom-process-step {
        padding: 21px;
    }

    .bathroom-cleaning-page .bathroom-btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 22px;
    }
}

@media only screen and (max-width: 480px) {
    .bathroom-cleaning-page .bathroom-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bathroom-cleaning-page h1 {
        font-size: 28px;
    }

    .bathroom-cleaning-page h2 {
        font-size: 23px;
    }

    .bathroom-cleaning-page p {
        font-size: 15px;
    }

    .bathroom-cleaning-page .bathroom-card,
    .bathroom-cleaning-page .bathroom-process-step {
        padding: 19px;
    }
}


/* =====================================================
   AREAS WE SERVICE — CENTRED BLOCK ONLY
===================================================== */

.bathroom-cleaning-page .bathroom-container.area-clean {
    width: 100%;
    max-width: 900px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    text-align: center;
}

/* Centre the heading */
.bathroom-cleaning-page .area-clean h2 {
    text-align: center;
}

/* Centre only the paragraphs */
.bathroom-cleaning-page .area-clean .bathroom-copy {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bathroom-cleaning-page .area-clean .bathroom-copy p {
    text-align: left;
}


/* Keep the list itself left aligned */
.bathroom-cleaning-page .area-clean .bathroom-list,
.bathroom-cleaning-page .area-clean .bathroom-list--grid {
    width: 100%;
    row-gap: 10px;
    margin: 20px;
    text-align: left;
}

/* =====================================================
   RESPONSIVE
===================================================== */

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

    .bathroom-cleaning-page .bathroom-container.area-clean {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
        text-align: center;
    }

    .bathroom-cleaning-page .area-clean h2 {
        text-align: center;
    }

    .bathroom-cleaning-page .area-clean .bathroom-copy,
    .bathroom-cleaning-page .area-clean .bathroom-copy p {
        text-align: center;
    }

    .bathroom-cleaning-page .area-clean .bathroom-list--grid {
        text-align: left;
        grid-template-columns: 1fr;
    }
}

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

    .bathroom-cleaning-page .bathroom-container.area-clean {
        padding-left: 16px;
        padding-right: 16px;
    }
}


.bathroom-cleaning-page .bathroom-frequency-section .bathroom-copy p {
    text-align: center;
}


.bathroom-container .centre{
    text-align: center;
    margin-top: 50px;
}
