/* ===========================================
    SÉLECTION SERVICES - CHECKBOXES STYLISÉES
    =========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}
.service-checkbox {
    position: relative;
}
.service-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.service-checkbox label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white-transparent);
    border: 2px solid var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}
.service-checkbox label:hover {
    border-color: var(--gray-light);
    background: var(--gray-light);
}
.service-checkbox input:checked + label {
    border-color: var(--primary);
    background: rgba(201, 162, 39, 0.08);
}
.service-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.service-checkbox input:checked + label .service-icon {
    background: var(--primary);
    border-color: var(--primary);
}
.service-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gray-dark);
    transition: color 0.3s ease;
}
.service-checkbox input:checked + label .service-icon svg {
    color: var(--white);
}
.service-info {
    flex: 1;
}
.service-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-dark);
    display: block;
}
.service-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.service-checkbox input:checked + label .service-check {
    background: var(--primary);
    border-color: var(--primary);
}
.service-check svg {
    width: 14px;
    height: 14px;
    color: var(--white);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}
.service-checkbox input:checked + label .service-check svg {
    opacity: 1;
    transform: scale(1);
}

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