/* =============================================================================
   SPECIALISED DEEP CLEANING — page-specific styles
   (supplements ece-cleaning.css)

   Layout differences from the office/gym stats pattern:
   - Stats are stacked vertically on the LEFT (three horizontal-strip cards),
     not laid out as a 3-column row below the intro copy.
   - Intro paragraph sits ABOVE the stack, on the same left column.
   - Facility photo occupies the right column and aligns to the stack height.
   - One stat ("Within Hours") is non-numeric; the numeric ones ("48-72 Hours",
     "4000x") vary widely in character length. An .is-text modifier keeps the
     word-based value visually balanced against numeric peers.

   No lead-magnet section on this page (per designer brief), so no badge
   class is defined here.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   HERO — background image override
   ----------------------------------------------------------------------------- */
.deep-cleaning-hero {
    position: relative;
    min-height: 520px;
    background-image: url('../images/deep_cleaning/deep_cleaning_hero_banner.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.deep-cleaning-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.deep-cleaning-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 60px;
}

/* -----------------------------------------------------------------------------
   INTRO / STATS SECTION — intro copy + vertically-stacked stat cards left,
   facility image right. Unique to this page.
   ----------------------------------------------------------------------------- */
.deep-cleaning-intro-section {
    background: #ffffff;
    padding: 80px 0;
}

.deep-cleaning-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.deep-cleaning-intro-content {
    flex: 1 1 55%;
}

.deep-cleaning-intro-image {
    flex: 1 1 45%;
    text-align: right;
}

.deep-cleaning-intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: inline-block;
}

.deep-cleaning-intro-text {
    font-family: Europa, Arial, sans-serif;
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 30px;
}

.deep-cleaning-stats-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deep-cleaning-stat-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 22px 26px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.deep-cleaning-stat-number {
    font-family: Europa, Arial, sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    color: #8dc63f;
    flex: 0 0 130px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Two-line numeric values (e.g. "48-72" over "Hours") render as a small
   sub-label under the primary number. */
.deep-cleaning-stat-number .unit {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #8dc63f;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
    line-height: 1.1;
}

/* Non-numeric stat (e.g. "Within Hours") — drop the type size so the
   card height stays visually balanced against numeric peers. */
.deep-cleaning-stat-number.is-text {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.deep-cleaning-stat-label {
    font-family: Europa, Arial, sans-serif;
    font-size: 15px;
    color: #444444;
    line-height: 1.55;
    margin: 0;
    flex: 1 1 auto;
}

/* -----------------------------------------------------------------------------
   COMPLIANCE BADGE — override for the deep-cleaning-specific tagline that
   sits below the Carenote logo. The default .ece-carenote-badge-text style
   is preserved; this class just narrows max-width so the longer
   "Peace of mind for insurance, audits, and handover sign-off." line wraps
   nicely without pushing the badge card out of proportion.
   ----------------------------------------------------------------------------- */
.deep-cleaning-carenote-badge-text {
    max-width: 200px;
}

/* -----------------------------------------------------------------------------
   "That's Care Beyond Clean" — brand tagline in the What Care section.
   Slightly stronger emphasis than surrounding body copy.
   ----------------------------------------------------------------------------- */
.deep-cleaning-tagline {
    font-family: Europa, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    line-height: 1.5;
    margin: 20px 0 30px;
}

.deep-cleaning-tagline .brand-highlight {
    color: #8dc63f;
}

/* -----------------------------------------------------------------------------
   BLOG / TIPS & NEWS WRAPPER — same padding scale as other service-page blogs
   ----------------------------------------------------------------------------- */
.deep-cleaning-blog-section {
    padding: 70px 0;
}

/* =============================================================================
   RESPONSIVE BREAKPOINTS
   Match the breakpoints used elsewhere in the site (991/767/479/320).
   ============================================================================= */

/* Tablet */
@media (max-width: 991px) {
    .deep-cleaning-hero {
        min-height: 450px;
    }

    .deep-cleaning-intro-section {
        padding: 60px 0;
    }

    .deep-cleaning-intro-wrapper {
        gap: 40px;
    }

    .deep-cleaning-intro-text {
        font-size: 17px;
    }

    .deep-cleaning-stat-card {
        padding: 18px 22px;
        gap: 18px;
    }

    .deep-cleaning-stat-number {
        font-size: 36px;
        flex-basis: 110px;
    }

    .deep-cleaning-stat-number.is-text {
        font-size: 20px;
    }

    .deep-cleaning-stat-number .unit {
        font-size: 14px;
    }

    .deep-cleaning-tagline {
        font-size: 18px;
    }

    .deep-cleaning-blog-section {
        padding: 60px 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .deep-cleaning-hero {
        min-height: 400px;
    }

    .deep-cleaning-hero .container {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .deep-cleaning-intro-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .deep-cleaning-intro-image {
        text-align: center;
    }

    .deep-cleaning-stat-card {
        gap: 16px;
        padding: 16px 18px;
    }

    .deep-cleaning-stat-number {
        flex-basis: 90px;
    }

    .deep-cleaning-blog-section {
        padding: 50px 0;
    }
}

/* Small mobile */
@media (max-width: 479px) {
    .deep-cleaning-intro-section {
        padding: 50px 0;
    }

    .deep-cleaning-stat-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .deep-cleaning-stat-number {
        flex-basis: auto;
    }

    .deep-cleaning-tagline {
        font-size: 17px;
    }

    .deep-cleaning-blog-section {
        padding: 40px 0;
    }
}

/* Very small mobile */
@media (max-width: 320px) {
    .deep-cleaning-blog-section {
        padding: 28px 0;
    }
}
