/* 
  SERVICE AREAS GRID STYLES
  Clean grid display for service locations
*/

/* Service Areas Section */
.service-areas {
    padding: 4rem 0;
    background-color: var(--off-white, #FAF9F6);
}

.service-areas h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.service-areas > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Areas Grid */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

/* Individual Area Item */
.area-item {
    flex: 0 1 200px;
    margin-bottom: 2rem;
}

.area-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.area-item:hover h3 {
    color: var(--accent-color, #c21d2e);
    transform: scale(1.05);
    transition: all 0.2s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-areas {
        padding: 3rem 1rem;
    }
    
    .service-areas > .container > p {
        margin-bottom: 1.5rem;
    }
    
    .service-areas h2 {
        font-size: 1.75rem;
    }
    
    .areas-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
        justify-items: center;
    }
    
    .area-item {
        width: auto;
        max-width: none;
        margin-bottom: 0;
    }
    
    .area-item h3 {
        font-size: 1rem;
    }
}
