/* ========== INTRO SECTION ========== */
.intro {
    padding: 5rem 2rem;
    background: white;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--green-900);
    margin-bottom: 2rem;
    text-align: center;
}

.intro p {
    font-size: 1.0625rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.intro p:last-child {
    margin-bottom: 0;
}

/* ========== SERVICES GRID ========== */
.location-services {
    padding: 5rem 2rem;
    background: var(--cream-100);
}

.location-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-services h2 {
    font-size: 2rem;
    color: var(--green-900);
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-sm);
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--green-800);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========== WHY US SECTION ========== */
.why-us {
    padding: 5rem 2rem;
    background: white;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us h2 {
    font-size: 2rem;
    color: var(--green-900);
    margin-bottom: 3rem;
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-us-card {
    padding: 2rem;
    background: var(--cream-50);
    border-radius: var(--radius-sm);
    transition: box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .why-us-card:hover {
        box-shadow: var(--shadow-md);
    }
}

.why-us-icon {
    width: 48px;
    height: 48px;
    background: var(--green-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.why-us-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.why-us-card h3 {
    font-size: 1.1875rem;
    color: var(--green-800);
    margin-bottom: 0.75rem;
}

.why-us-card p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========== SERVICE AREA SECTION ========== */
.service-area {
    padding: 5rem 2rem;
    background: var(--cream-100);
}

.service-area-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-area h2 {
    font-size: 2rem;
    color: var(--green-900);
    margin-bottom: 1rem;
    text-align: center;
}

.service-area-intro {
    font-size: 1.0625rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.neighborhood-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-sm);
    transition: box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .neighborhood-item:hover {
        box-shadow: var(--shadow-sm);
    }
}

.neighborhood-icon {
    width: 24px;
    height: 24px;
    background: var(--green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.neighborhood-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

.neighborhood-item span {
    font-size: 1.0625rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* FAQ styles handled by global.css */

/* ========== CTA SECTION ========== */
.location-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
    color: white;
}

.location-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.location-cta h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: white;
    margin-bottom: 1rem;
}

.location-cta p {
    font-size: 1.125rem;
    color: var(--green-100);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .intro p {
        font-size: 1rem;
    }

}
