/* Community Cleaning Page Styles */

.community-hero {
    background: linear-gradient(135deg, #c7f1ff 0%, #ebb9eb 100%);
    padding: 4rem 2rem;
}

.community-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.community-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
}

.hero-bottom-community {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-features-community {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero-feature-community {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: #333;
}

.checkmark-community {
    font-size: 1.2rem;
    color: #666;
}

.cta-community-hero {
    display: inline-block;
    background: #ffd93d;
    color: #1a1a1a;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.cta-community-hero:hover {
    background: #ffce00;
    transform: scale(1.05);
}

.intro-community {
    padding: 3rem 2rem;
    background: #f5f5f5;
}

.intro-text-community {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

.tasks-community {
    padding: 4rem 2rem;
    background: white;
}

.tasks-grid-community {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.task-card-community {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.task-img-community {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
}

.task-img-community img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.task-card-community h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.divider {
    display: block;
    color: #999;
    margin: 0.5rem 0;
}

.task-list-community {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
    color: #666;
}

.task-list-community li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.task-list-community li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #45b0e6;
    font-weight: bold;
}

.areas-community {
    padding: 4rem 2rem;
    background: #e8e8e8;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 900px;
    margin: 2rem auto;
    align-items: start;
}

.areas-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 3rem;
}

.areas-column:first-child {
    justify-content: flex-start;
    align-items: flex-end;
}

.areas-column:last-child {
    justify-content: flex-start;
    align-items: flex-start;
}

.areas-column p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 500;
}

.areas-divider {
    position: relative;
    width: 20px;
    height: 250px;
}

.areas-divider::before,
.areas-divider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background: #333;
}

.areas-divider::before {
    left: 5px;
}

.areas-divider::after {
    right: 5px;
}

.why-community {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.why-grid-community {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto;
}

.why-card-community {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
}

.why-icon-community {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card-community h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.why-card-community p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.pricing-community {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #d4f1f9 0%, #f0e5f5 100%);
    text-align: center;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin: 1rem 0 2rem;
    text-decoration: underline;
}

.pricing-box-community {
    display: inline-block;
    background: white;
    border: 3px solid #333;
    border-radius: 10px;
    padding: 3rem 5rem;
}

.price-large {
    font-size: 5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.price-period {
    font-size: 1.5rem;
    color: #333;
    margin-top: 0.5rem;
}

.process-community {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.process-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.process-number {
    font-size: 2rem;
    font-weight: 700;
    color: #45b0e6;
    margin-bottom: 0.5rem;
}

.process-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.cta-process {
    text-align: center;
    margin-top: 3rem;
}

.cta-process-btn {
    display: inline-block;
    background: #7c6fd6;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-process-btn:hover {
    background: #6759c0;
    transform: scale(1.05);
}

.faq-community {
    padding: 4rem 2rem;
    background: white;
}

.faq-container-community {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-community {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question-community {
    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-community:hover {
    background: #f9f9f9;
}

.faq-icon-community {
    font-size: 1.5rem;
    font-weight: 300;
    color: #45b0e6;
    transition: transform 0.3s;
}

.faq-item-community.active .faq-icon-community {
    transform: rotate(45deg);
}

.faq-answer-community {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-community.active .faq-answer-community {
    max-height: 500px;
}

.faq-answer-community p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .why-grid-community {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .community-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-bottom-community {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tasks-grid-community,
    .why-grid-community,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .areas-divider {
        width: 200px;
        height: 4px;
        background: linear-gradient(to right, #333 0%, #333 48%, transparent 48%, transparent 52%, #333 52%, #333 100%);
        background-size: 40px 100%;
    }
}

@media (max-width: 480px) {
    .community-hero {
        padding: 3rem 1rem;
    }
    
    .community-hero h1 {
        font-size: 1.5rem;
    }
    
    .price-large {
        font-size: 3.5rem;
    }
    
    .price-period {
        font-size: 1.5rem;
    }
    
    .task-card-community,
    .process-card {
        padding: 1.5rem;
    }
}