/* =============================================================================
   WAREHOUSE & INDUSTRIAL CLEANING — page-specific styles
   (supplements ece-cleaning.css)

   Mirrors the restaurant/schools pattern: hero background override + a
   simple two-column intro panel (heading-like lead sentence + supporting
   paragraphs + facility image). No stat cards, no bullet-key-point icons —
   the PDF brief uses plain-prose intro.
   ============================================================================= */

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

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

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

/* -----------------------------------------------------------------------------
   INTRO PANEL — heading-like lead sentence, two supporting paragraphs,
   facility image on the right. Unique to this page.
   ----------------------------------------------------------------------------- */
.warehouse-intro-section {
    background: #ffffff;
    padding: 80px 0;
}

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

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

.warehouse-intro-content hr{
    border: 0;
    height: 1px;
    background: #8dc63f;
    margin: 20px 0;
}

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

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

.warehouse-intro-heading {
    font-family: Europa, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 22px;
    line-height: 1.4;
}

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

.warehouse-intro-text:last-child {
    margin-bottom: 0;
}

/* -----------------------------------------------------------------------------
   LEAD MAGNET BADGE — visual parity with restaurant/gym/bank badges.
   Copy is short ("A Practical Self-Audit Guide for Facility Managers") so
   max-width is snug at 380px.
   ----------------------------------------------------------------------------- */
.warehouse-leadmagnet-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 50px;
    padding: 14px 22px;
    margin-top: 22px;
    max-width: 380px;
    width: 100%;
    transform: translateY(-47px);
}

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

.warehouse-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
   ----------------------------------------------------------------------------- */
.warehouse-blog-section {
    padding: 70px 0;
}

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

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

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

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

    .warehouse-intro-heading {
        font-size: 22px;
    }

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

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

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

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

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

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

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

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

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

    .warehouse-intro-heading {
        font-size: 20px;
    }

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

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

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