/* Service Type Toggle Styles */
.service-type-toggle {
    display: flex;
    gap: 0;
    margin: 20px 0 24px 0;
    width: fit-content;
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 4px;
}

.service-toggle-btn {
    padding: 10px 24px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    white-space: nowrap;
}

.service-toggle-btn:hover {
    color: #333;
    background-color: rgba(255, 255, 255, 0.5);
}

.service-toggle-btn.active {
    background-color: #fff;
    color: #000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.service-toggle-btn.active:hover {
    background-color: #fff;
    color: #000;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .service-type-toggle {
        width: 100%;
        margin: 16px 0 20px 0;
    }
    
    .service-toggle-btn {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
    }
}

