/* =============================================================================
   BANK & GOVERNMENT FACILITY CLEANING — page-specific styles
   (supplements ece-cleaning.css)

   Mirrors the restaurant-cleaning.css pattern (hero override + a two-column
   intro panel that replaces office's stats grid), with one bank-specific
   addition: the left column uses bullet-style key-point items
   (icon + sub-heading + paragraph) rather than a single block of body copy.
   This matches the "First impressions are institutional" / "Your cleaners
   have unsupervised access to sensitive spaces" layout in the brief.
   ============================================================================= */

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

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

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

/* -----------------------------------------------------------------------------
   INTRO PANEL — two key-point items (left) + facility image (right)
   Unique to this page. Each key-point has a green check icon, a strong
   sub-heading, and a paragraph of supporting copy.
   ----------------------------------------------------------------------------- */
.bank-intro-section {
    background: #ffffff;
    padding: 80px 0;
}

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

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

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

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

.bank-intro-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bank-intro-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0 0 30px;
}

.bank-intro-point:last-child {
    margin-bottom: 0;
}

.bank-intro-point-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #8dc63f;
    font-size: 22px;
    line-height: 1.1;
    margin-top: 3px;
}

.bank-intro-point-body {
    flex: 1 1 auto;
}

.bank-intro-point-heading {
    font-family: Europa, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 8px;
    line-height: 1.3;
}

.bank-intro-point-text {
    font-family: Europa, Arial, sans-serif;
    font-size: 17px;
    color: #555555;
    line-height: 1.65;
    margin: 0;
}

/* -----------------------------------------------------------------------------
   LEAD MAGNET BADGE — visual parity with restaurant/gym badges.
   Slightly wider max-width to fit the longer "A Practical Self-Audit Guide
   for Facility Managers in Financial Services and Government." copy.
   ----------------------------------------------------------------------------- */
.bank-leadmagnet-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 50px;
    padding: 14px 22px;
    margin-top: 22px;
    max-width: 430px;
    width: 100%;
    transform: translateY(-47px);
}

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

.bank-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 other service-page blogs
   ----------------------------------------------------------------------------- */
.bank-blog-section {
    padding: 70px 0;
}

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

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

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

    .bank-intro-wrapper {
        gap: 40px;
    }

    .bank-intro-point-heading {
        font-size: 18px;
    }

    .bank-intro-point-text {
        font-size: 16px;
    }

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

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

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

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

    .bank-intro-image {
        text-align: center;
    }

    .bank-intro-point {
        margin-bottom: 24px;
    }

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

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

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

    .bank-intro-point-heading {
        font-size: 17px;
    }

    .bank-intro-point-text {
        font-size: 15px;
    }

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

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