/* Service Section - Google-inspired */
.service {
    padding: 64px 0;
    background: #fff !important;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.service-card {
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    transform: none;
}

.service-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.service-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f1f3f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.02);
}

.service-content {
    padding: 20px;
    position: relative;
}

.service-name {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 8px;
}

.service-description {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    color: #5f6368;
    transition: color 0.2s, transform 0.2s;
}

.service-card:hover .service-arrow {
    color: #127C71;
    transform: translateX(2px);
}

.service-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #5f6368;
    padding: 48px 24px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .service {
        padding: 40px 0;
    }

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