/* ===== Service Areas 4x4 Grid ===== */

.service-areas {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.service-areas h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.areas-subtext {
    margin-bottom: 40px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 4 Column Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Grid Items */
.areas-grid a {
    display: block;
    padding: 18px;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.areas-grid a:hover {
    background: #111;
    color: #fff;
    transform: translateY(-4px);
}

/* Tablet */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}
