/* ===============================
   SERVICES LIST STYLES
   =============================== */

.btn-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: var(--brand-grey-800);
    border: none;
    border-radius: var(--brand-radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--brand-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 211, 59, 0.4);
    color: var(--brand-grey-900);
}

.btn-service i {
    font-size: 1.125rem;
}

.btn-service-disabled {
    background: var(--brand-grey-400);
    cursor: not-allowed;
    pointer-events: none;
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .btn-service {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 280px;
    }

    .service-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Desktop adjustments */
@media (min-width: 769px) {
    .service-buttons {
        justify-content: center;
    }

    .btn-service {
        min-width: 180px;
    }
}
