/**
 * Service Area & City Page Styles
 * Used by page-service-area.php and page-service.php templates
 */

/* Hero Section */
.service-area-hero,
.service-hero {
    text-align: center;
    padding: 40px 0 50px;
}

.service-area-hero h1,
.service-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-area-hero__subtitle,
.service-hero__subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* Services Grid */
.service-area-services h3,
.service-benefits h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--dark-blue, #011635);
}

.service-area-services p,
.service-benefits p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Why Choose Section */
.service-area-why ul {
    list-style: none;
    padding: 0;
}

.service-area-why li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.service-area-why li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-blue, #011635);
}

.faq-item p {
    line-height: 1.7;
    color: #444;
}

/* Map Embed */
.service-area-map__embed {
    position: relative;
    padding-bottom: 40%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-area-map__embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* CTA Sections */
.service-area-cta,
.service-cta {
    background-color: var(--dark-blue, #011635);
    color: #fff;
}

.service-area-cta h2,
.service-cta h2 {
    color: #fff;
}

.service-area-cta p,
.service-cta p {
    color: rgba(255, 255, 255, 0.85);
}

/* Service Process */
.service-process ol {
    padding-left: 0;
    list-style: none;
    counter-reset: step;
}

.service-process li {
    margin-bottom: 24px;
    padding-left: 50px;
    position: relative;
    counter-increment: step;
}

/* Responsive */
@media (max-width: 767px) {
    .service-area-hero h1 {
        font-size: 1.5rem;
    }

    .service-area-map__embed {
        padding-bottom: 60%;
    }

    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn-group .btn {
        width: 100%;
        text-align: center;
    }
}
