/* Vacation Rental Cleaning Page Styles */

.rental-hero {
    background: #c0eafc;
    padding: 4rem 2rem;
}

.rental-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.rental-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-features-rental {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-feature-rental {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: #333;
}

.hero-feature-highlight {
    background: #a3d977;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.checkmark {
    font-size: 1.2rem;
    color: #666;
}

.checkmark-green {
    color: #fff;
    font-weight: bold;
}

.cta-rental-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-rental-hero:hover {
    background: #ffce00;
    transform: scale(1.05);
}

.intro-rental {
    padding: 4rem 2rem;
    background: white;
}

.intro-box-rental {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff9e6;
    padding: 2.5rem;
    border-radius: 10px;
}

.intro-question {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
}

.intro-box-rental p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.intro-box-rental p:last-child {
    margin-bottom: 0;
}

.tasks-rental {
    padding: 4rem 2rem;
    background: #e8e8e8;
}

.tasks-grid-rental {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.task-card-rental {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.task-img-rental {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
}

.task-img-rental img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
}

.task-card-rental p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

.cta-agents {
    text-align: center;
    background: #e8e8e8;
    padding: 2rem 0;
}

.cta-agents-btn {
    display: inline-block;
    background: #7c6fd6;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-agents-btn:hover {
    background: #6759c0;
    transform: scale(1.05);
}

.pricing-rental {
    padding: 4rem 2rem;
    background: white;
}

.pricing-grid-rental {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.price-card-rental {
    background: #fff9e6;
    border: 3px solid #e6d97a;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.price-card-rental h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.price-subtext {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.price-extra {
    font-size: 0.95rem;
    color: #333;
    margin: 0.5rem 0;
}

.reviews-rental {
    padding: 3rem 2rem;
    background: white;
}

.google-badge-rental {
    text-align: center;
}

.benefits-rental {
    padding: 4rem 2rem;
    background: #b8e6e1;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.highlight-text {
    color: #d4a004;
    text-decoration: underline;
}

.benefits-box {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #333;
}

.benefits-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.cta-final-rental {
    padding: 4rem 2rem;
    background: #b8e6e1;
    text-align: center;
}

.cta-intro-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.cta-final-btn {
    display: inline-block;
    background: #ffd93d;
    color: #1a1a1a;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    max-width: 700px;
    line-height: 1.5;
}

.cta-final-btn:hover {
    background: #ffce00;
    transform: scale(1.05);
}

.faq-rental {
    padding: 4rem 2rem;
    background: white;
}

.faq-container-rental {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-rental {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question-rental {
    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-rental:hover {
    background: #f9f9f9;
}

.faq-icon-rental {
    font-size: 1.5rem;
    font-weight: 300;
    color: #45b0e6;
    transition: transform 0.3s;
}

.faq-item-rental.active .faq-icon-rental {
    transform: rotate(45deg);
}

.faq-answer-rental {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-rental.active .faq-answer-rental {
    max-height: 500px;
}

.faq-answer-rental p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer-rental a {
    color: #45b0e6;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer-rental a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .tasks-grid-rental,
    .pricing-grid-rental {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-rental-hero {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
    
    .cta-rental-hero:hover {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .rental-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .hero-features-rental {
        max-width: 100%;
        gap: 0.8rem;
    }
    
    .hero-feature-rental {
        font-size: 0.9rem;
    }
    
    .cta-rental-hero {
        width: 100%;
        text-align: center;
    }
    
    .tasks-grid-rental,
    .pricing-grid-rental {
        grid-template-columns: 1fr;
    }
    
    .intro-box-rental {
        padding: 1.5rem;
    }
    
    .intro-question {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .rental-hero {
        padding: 3rem 1rem;
    }
    
    .rental-hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-feature-rental {
        font-size: 0.85rem;
    }
    
    .task-card-rental {
        padding: 1.5rem;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
}