/* Service Page Styles */

.service-hero {
    background: linear-gradient(135deg, #a8d5e2 0%, #c4e3f3 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.service-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #333;
}

.feature-icon {
    font-size: 1.5rem;
}

.cta-button {
    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 {
    background: #ffd93d;
    color: #1a1a1a;
}

.yellow-cta:hover {
    background: #ffce00;
    transform: scale(1.05);
}

.green-cta {
    background: #7ed957;
    color: #1a1a1a;
}

.green-cta:hover {
    background: #6bc647;
    transform: scale(1.05);
}

.intro-section {
    padding: 3rem 2rem;
    background: white;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
}

.tasks-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.task-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.task-card:hover {
    border-color: #45b0e6;
    transform: translateY(-3px);
}

.task-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.task-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.divider {
    display: block;
    color: #999;
    margin: 0.5rem 0;
}

.task-list {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.85rem;
    color: #666;
}

.task-list li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.task-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #45b0e6;
    font-weight: bold;
}

.pricing-cta-section {
    padding: 3rem 2rem;
    background: white;
}

.pricing-cta-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff9e6;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid #ffd93d;
    text-align: center;
}

.pricing-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.benefits-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #d4f1f4 0%, #b8e6e1 100%);
    text-align: center;
}

.benefits-section .section-title {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.recurring-cta {
    text-align: center;
    margin-top: 2rem;
}

.reviews-section {
    padding: 4rem 2rem;
    background: white;
}

.google-badge {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-intro {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.reviews-grid-service {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-card .stars {
    color: #fbbc04;
    margin-bottom: 0.5rem;
}

.review-card .review-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.review-card .author {
    font-weight: 600;
    color: #333;
}

.view-all-reviews {
    display: inline-block;
    background: #45b0e6;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.view-all-reviews:hover {
    background: #2a8fc9;
    transform: scale(1.05);
}

.service-area-section {
    padding: 4rem 0 0 0;
    background: #2d3436;
    color: white;
}

.service-area-section .section-title {
    color: white;
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.service-area-intro {
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.service-area-intro p {
    color: #e0e0e0;
    line-height: 1.7;
    text-align: center;
}

.map-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.map-fullwidth iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.why-choose-section {
    padding: 4rem 2rem;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 1.5rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.why-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .tasks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-features {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    .tasks-grid,
    .benefits-grid,
    .why-grid,
    .reviews-grid-service {
        grid-template-columns: 1fr;
    }
    .pricing-cta-box {
        padding: 1.5rem;
    }
    .cta-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 3rem 1rem;
    }
    .service-hero h1 {
        font-size: 1.5rem;
    }
    .hero-feature {
        font-size: 0.85rem;
    }
    .task-card,
    .benefit-card,
    .why-card {
        padding: 1.5rem 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    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:hover {
    background: #f9f9f9;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #45b0e6;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.7;
}