/* Business Cleaning Page Styles */

.business-hero {
    background: linear-gradient(135deg, #e8f4f8 0%, #ffffff 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.business-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.business-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a7a9e;
    margin-bottom: 2.5rem;
}

.hero-box {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hero-features-business {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature-business {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #333;
}

.feature-icon-business {
    font-size: 1.5rem;
}

.cta-button-business {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    margin: 0.5rem;
}

.yellow-cta-business {
    background: #ffd93d;
    color: #1a1a1a;
}

.yellow-cta-business:hover {
    background: #ffce00;
    transform: scale(1.05);
}

.intro-business {
    padding: 3rem 2rem;
    background: #f9f9f9;
}

.intro-text-business {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

.business-types-section {
    padding: 4rem 2rem;
    background: white;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.business-type-card {
    text-align: center;
}

.business-type-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2f7;
    border-radius: 50%;
    padding: 1rem;
}

.business-type-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.business-type-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.standout-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.standout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.standout-card {
    text-align: center;
    padding: 1.5rem;
}

.standout-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.standout-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.divider {
    display: block;
    color: #999;
    margin: 0.5rem 0;
}

.standout-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.service-area-business {
    padding: 4rem 0 0 0;
    background: #2d3436;
    color: white;
}

.service-area-business .section-title {
    color: white;
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.service-area-intro-business {
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem;
    background: rgba(69, 122, 142, 0.3);
    border-radius: 10px;
}

.service-area-intro-business p {
    color: #e0e0e0;
    line-height: 1.7;
    text-align: center;
}

.map-fullwidth-business {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.map-fullwidth-business iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.reviews-business {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.google-badge-business {
    text-align: center;
    margin-bottom: 1rem;
}

.rating-text-business {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0;
}

.reviews-intro-business {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-highlight-business {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: #fff9e6;
    border-radius: 10px;
    border-left: 5px solid #ffd93d;
}

.clients-slider-inline {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-title-inline {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.slider-container-inline {
    overflow: hidden;
    padding: 1rem 0;
}

.slider-track-inline {
    display: flex;
    gap: 4rem;
    animation: scroll-inline 20s linear infinite;
}

.slider-track-inline img {
    height: 120px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.slider-track-inline img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-inline {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.faq-business {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.faq-container-business {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-business {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question-business {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question-business:hover {
    background: #f9f9f9;
}

.faq-icon-business {
    font-size: 1.5rem;
    font-weight: 300;
    color: #45b0e6;
    transition: transform 0.3s;
}

.faq-item-business.active .faq-icon-business {
    transform: rotate(45deg);
}

.faq-answer-business {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-business.active .faq-answer-business {
    max-height: 500px;
}

.faq-answer-business p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .standout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-features-business {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .business-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-box {
        padding: 1.5rem;
    }
    
    .hero-features-business {
        flex-direction: column;
        gap: 1rem;
    }
    
    .business-grid,
    .standout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-button-business {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .slider-track-inline img {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .business-hero {
        padding: 3rem 1rem;
    }
    
    .business-hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-feature-business {
        font-size: 0.85rem;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .standout-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .business-type-img {
        width: 120px;
        height: 120px;
    }
}