/* =============================================================================
   OFFICE CLEANING — page-specific styles (supplements ece-cleaning.css)
   Mirrors the healthcare-cleaning.css pattern: minimal hero override + the
   one section that is unique to this page (the "Why Professional Office
   Cleaning Matters" stats panel).
   ============================================================================= */

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

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

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

/* -----------------------------------------------------------------------------
   STATS PANEL — "Why Professional Office Cleaning Matters"
   Unique to the office page. Layout: heading+intro left, photo right,
   3 stat cards below in a row, closing paragraph last.
   ----------------------------------------------------------------------------- */
.office-stats-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.office-stats-top {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}

.office-stats-top-content {
    flex: 1 1 50%;
}

.office-stats-top-image {
    flex: 1 1 50%;
    text-align: right;
}

.office-stats-top-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: inline-block;
}

.office-stats-title {
    font-family: Europa, Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 20px;
    line-height: 1.2;
}

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

.office-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.office-stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.office-stat-number {
    font-family: Europa, Arial, sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #8dc63f;
    margin: 0 0 12px;
    display: block;
}

.office-stat-label {
    font-family: Europa, Arial, sans-serif;
    font-size: 16px;
    color: #444444;
    line-height: 1.5;
    margin: 0;
}

.office-stats-closing {
    font-family: Europa, Arial, sans-serif;
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

/* -----------------------------------------------------------------------------
   LEAD MAGNET BADGE — visual parity with healthcare's badge
   ----------------------------------------------------------------------------- */
.office-leadmagnet-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 50px;
    padding: 14px 22px;
    margin-top: 22px;
    max-width: 360px;
    width: 100%;
    transform: translateY(-47px);
}

.office-leadmagnet-badge-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.office-leadmagnet-badge span {
    font-family: Europa, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #59595b;
    line-height: 1.4;
}

/* -----------------------------------------------------------------------------
   BLOG / TIPS & NEWS WRAPPER — same padding scale as health-care-blog-section
   ----------------------------------------------------------------------------- */
.office-blog-section {
    padding: 70px 0;
}

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

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

    .office-stats-section {
        padding: 60px 0;
    }

    .office-stats-top {
        gap: 40px;
    }

    .office-stats-title {
        font-size: 30px;
    }

    .office-stat-number {
        font-size: 46px;
    }

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

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

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

    .office-stats-top {
        flex-direction: column;
        gap: 30px;
    }

    .office-stats-top-image {
        text-align: center;
    }

    .office-stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .office-stat-card {
        padding: 28px 24px;
    }

    .office-leadmagnet-badge {
        padding: 12px 16px;
        gap: 10px;
    }

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

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

    .office-stats-title {
        font-size: 26px;
    }

    .office-stat-number {
        font-size: 40px;
    }

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

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