/**
 * CPAP Cleaning Supplies landing page
 * Brand: #0a2b62 (blue), #e94132 (red). Font: Montserrat.
 */

.cleaning-hero {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cleaning-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f4f9 0%, #e2e8f0 50%, #f8fafc 100%);
    z-index: 0;
}

.cleaning-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(10, 43, 98, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cleaning-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.cleaning-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 64px 0;
    min-height: 480px;
}

.cleaning-hero-content {
    max-width: 560px;
}

.cleaning-hero-eyebrow {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e94132;
    margin: 0 0 16px;
}

.cleaning-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #0a2b62;
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cleaning-hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6470;
    margin: 0 0 32px;
}

.cleaning-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e94132;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(233, 65, 50, 0.3);
    transition: all 0.3s ease;
}

.cleaning-hero-cta:hover {
    background: #d12e1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 65, 50, 0.4);
}

/* Hero image */
.cleaning-hero-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(10, 43, 98, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #e8ecf2 0%, #dde3eb 100%);
    aspect-ratio: 4/3;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cleaning-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cleaning-hero-image-wrap:hover .cleaning-hero-image {
    transform: scale(1.03);
}

/* Why Clean Section */
.cleaning-why {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    padding: 80px 24px;
    border-top: 1px solid #e6e6e6;
}

.cleaning-section-title {
    font-size: 36px;
    font-weight: 900;
    color: #0a2b62;
    margin: 0 0 16px;
    text-align: center;
    letter-spacing: -0.02em;
}

.cleaning-section-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6470;
    margin: 0 auto 48px;
    max-width: 680px;
    text-align: center;
}

.cleaning-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.cleaning-card {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

.cleaning-card:hover {
    box-shadow: 0 8px 24px rgba(10, 43, 98, 0.1);
    border-color: rgba(10, 43, 98, 0.15);
    transform: translateY(-4px);
}

.cleaning-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 65, 50, 0.1);
    color: #e94132;
    border-radius: 16px;
}

.cleaning-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #0a2b62;
    margin: 0 0 12px;
}

.cleaning-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6470;
    margin: 0;
}

/* What We Offer Section */
.cleaning-products {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    padding: 80px 24px;
}

.cleaning-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.cleaning-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

.cleaning-product-card:hover {
    box-shadow: 0 12px 32px rgba(233, 65, 50, 0.12);
    border-color: rgba(233, 65, 50, 0.2);
    transform: translateY(-4px);
}

.cleaning-product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f9fb;
}

.cleaning-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cleaning-product-card:hover .cleaning-product-image img {
    transform: scale(1.05);
}

.cleaning-product-body {
    padding: 28px 24px;
}

.cleaning-product-title {
    font-size: 20px;
    font-weight: 800;
    color: #0a2b62;
    margin: 0 0 10px;
}

.cleaning-product-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6470;
    margin: 0 0 16px;
}

.cleaning-product-link {
    font-size: 15px;
    font-weight: 700;
    color: #e94132;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.cleaning-product-link:hover {
    color: #d12e1f;
    gap: 10px;
}

.cleaning-cta-wrap {
    text-align: center;
}

.cleaning-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0a2b62;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(10, 43, 98, 0.3);
    transition: all 0.3s ease;
}

.cleaning-cta-btn:hover {
    background: #082550;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 43, 98, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .cleaning-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 0;
        min-height: auto;
    }

    .cleaning-hero-content {
        order: 2;
        max-width: 100%;
    }

    .cleaning-hero-image-wrap {
        order: 1;
        max-height: 320px;
        aspect-ratio: 16/10;
    }

    .cleaning-cards,
    .cleaning-product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .cleaning-hero {
        min-height: auto;
    }

    .cleaning-hero-title {
        font-size: 36px;
    }

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

    .cleaning-hero-grid {
        padding: 40px 0;
    }

    .cleaning-hero-image-wrap {
        max-height: 280px;
    }

    .cleaning-why,
    .cleaning-products {
        padding: 60px 20px;
    }

    .cleaning-section-title {
        font-size: 30px;
    }

    .cleaning-section-lead {
        font-size: 17px;
        margin-bottom: 36px;
    }

    .cleaning-product-body {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .cleaning-hero-title {
        font-size: 30px;
    }

    .cleaning-hero-cta,
    .cleaning-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
